"export" 문을 사용하지 않은 경우 발생할 수 있습니다. 스크립트 파일로 가져올 함수 앞에 "내보내기"를 사용하십시오. 자바스크립트 파일은 다음과 같이 이름이demo.js입니다.
demo.js
console.log("function will import"); export function test(){ console.log("Imported!!!"); }
다음은 위의 함수를 가져오는 "index.html" 파일입니다. -
index.html
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <script type='module'> import { test } from "./demo.js" test(); </script> </body> </html>
위의 프로그램을 실행하기 위해서는 "anyName.html(index.html)"이라는 파일명을 저장하고 파일을 우클릭하면 됩니다. VS Code 편집기에서 "Open with Live Server" 옵션을 선택합니다.
다음은 함수 이름이 test()인 demo.js 파일의 출력입니다.