我有一个名为的文件index.js
,如下所示:
import Backbone from 'backbone'
import _ from 'underscore'
import $ from 'jquery'
console.log("blah")
export default {...}
在我的index.html
我有:
<script>
System.import('index');
</script>
但令我困惑的是,我可以看到正在加载的文件(在开发工具网络面板中)但console.log
从未运行过。如果是这种情况,我该如何引导我的应用程序?
一些在线教程建议在 System.import 文件中引导它,但如果不执行代码怎么办?