最近我一直在使用 Rust WASM 进行编码并使用 wasm pack 进行编译。完成编码后,我将编译后的文件放入我的静态文件夹(我可以确认它们是静态的),并尝试将它们导入我的 HTML 文件中。我不断收到此错误:
我很困惑为什么我在请求中得到一个无效的 mime 类型,它清楚地表明 mimetype 是正确的。在github上搜索后,其他人也遇到了同样的问题。但这是 2018 年的一篇较旧的帖子,他们说它会以更新的版本发布,即我已经安装的版本。https://github.com/expressjs/express/issues/3589
这是我的锈代码:
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
use web_sys::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_namespace = console)]
fn log(s: &str);
}
#[wasm_bindgen]
pub fn hello_world() {
log("Hello, this is from Rust WASM");
}
和我的 HTML 代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>epic gam</title>
<link href="/static/css/styles.css" rel="stylesheet">
</head>
<body>
<script src="/socket.io/socket.io.js"></script>
<script src="/static/js/third-party/jquery.slim.js"></script>
<!-- <script src="/static/js/bundle.js?version=0.0.1"></script> -->
<script src="/static/js/game.js"></script>
<script type="module" src="/static/wasm/wildz.js"></script>
</body>
</html>
我对为什么这不起作用感到困惑,并希望得到一些帮助。
提前致谢。