为了账号安全,请及时绑定邮箱和手机立即绑定

javascript import 报错

javascript import 报错

千巷猫影 2019-03-22 15:14:21
初学者, 想知道错误出在哪里,找到的资料都介绍的以下是我精简后的代码内容,错误提示在 main.js import那一行错误提示为: SyntaxError: Unexpected token '{'. import call expects exactly one argumentindex.html<!DOCTYPE html><html><head>    <title>LearnJavscript</title>    <meta charset="utf-8">    <style type = "text/css">        body{            background: #FFFFFF;            padding: 0px;            margin: 0px;            display: flex;            /* flex-direction: column-reverse; */            justify-content: center;        }     </style></head><body>    <script src="main.js"></script></body></html>main.jsimport {hello} from './lib.js';hello();lib.jsexport function hello() {    console.log('hello');}
查看完整描述

3 回答

?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

浏览器啥时候可以直接用 import了?
浏览器JS不支持模块系统,如果需要,需要用requirejs或者seajs或者webpack处理

查看完整回答
反对 回复 2019-04-03
?
繁华开满天机

TA贡献1816条经验 获得超4个赞

<script src="main.js"></script>

=>

<script type="module" src="main.js"></script>


查看完整回答
反对 回复 2019-04-03
  • 3 回答
  • 0 关注
  • 1280 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信