가져오기 및 요구 사항
수정:SyntaxError:모듈 외부에서 import 문을 사용할 수 없습니다.
따라갈 수 있어.
let test = require('mathjs')
let result = test.round(3.12484, 3)
console.log(result)
그러나 가져오기 구문은 잘못된 것입니다.
import { round } from 'mathjs'
let test = round(3.1515,2)
console.log(test)
솔루션:
너의 소포 안에 있다.json 파일, "type": "module" 만 추가하면 이 문제를 해결할 수 있습니다.
주 항목 JS 파일에 다음 행을 추가할 수도 있습니다.
<script type="module" src="main.js"></script>
Reference
이 문제에 관하여(가져오기 및 요구 사항), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/chuangwang/fix-syntaxerror-cannot-use-import-statement-outside-a-module-2767
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
let test = require('mathjs')
let result = test.round(3.12484, 3)
console.log(result)
import { round } from 'mathjs'
let test = round(3.1515,2)
console.log(test)
너의 소포 안에 있다.json 파일, "type": "module" 만 추가하면 이 문제를 해결할 수 있습니다.
주 항목 JS 파일에 다음 행을 추가할 수도 있습니다.
<script type="module" src="main.js"></script>
Reference
이 문제에 관하여(가져오기 및 요구 사항), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/chuangwang/fix-syntaxerror-cannot-use-import-statement-outside-a-module-2767텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)