"export default, import"주의 사항
2254 단어 JavaScript모듈tech
ex.
export.js
const testName1 = "yamada";
const testName2 = "sato";
export default testName1; //export defaultを使った書き方
export { testName2 }; //Named importを使った書き方
import.jsimport name1 from "./export.js"; //testName1じゃなくてよい!!
import { testName2 } from "./export.js"; //testName2でなければならない!!(変数名を変えると、undefinedになる)
console.log(name1);
console.log(testName2);
결과 내보내기4
yamada
sato
import 중 변수 이름이 가려지지 않으면나는 특별히 변수명을 바꾸는 의미도 없다고 생각한다.
따라서 필요하지 않으면 export default를 사용하지 마십시오
Named import 를 사용하면 버그가 발생하지 않을 것 같습니다.
Reference
이 문제에 관하여("export default, import"주의 사항), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/mo_ri_regen/articles/7a261a66e3bbed텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)