如何使用JavaScript正确编写,导入模块?

时间:2019-05-07 16:16:45

标签: javascript module cors

我正在尝试为我的网站高保真原型编写代码。我们尝试仅在前端(java脚本)上实现所有功能。我现在被困在使用Java脚本编写模块上。

我了解要使用模块,必须将脚本类型设置为“模块”。而且,根据我的理解

<script type="module" src="./module.js"></script>
使用

时,浏览器会将GET请求发送到url以获取模块。

这是我的文件

DB_MOD.js

function categoryLoad(){
    console.log("test");
}

export categoryLoad;

PROCESS_MOD.js

import * as db from "DB_MOD.js"

function loadTutorial(name){
    db.categoryLoad()
}
loadTutorial();

text.html

<!DOCTYPE html>
<html>
<!-- script goes here -->
<script type="module" src="./DB_MOD.js"></script>
<script type="module" src="./PROCESS_MOD.js"></script>
<head>
    <title></title>
</head>
<body>
</body>
</html>

我的网站的结果是这样。

https://i.imgur.com/HNV9a48.png?1(对不起,我没有足够的代表来发布图片)

0 个答案:

没有答案