emscripten-core/emscripten

Data files are loaded from root, not from directory where js file is loaded from

オープン

#12,288 opened on 2020/09/20

 (3 件のコメント) (0 件のリアクション) (0 人の担当者)C++ (3,519 件のフォーク)batch import
good first bughelp wanted

Repository metrics

Stars
 (27,361 個のスター)
PR merge metrics
 (平均マージ 19d 10h) (30d で 147 merged PRs)

説明

I have a modularized wasm module that pre-js's file_packager-produced package:

/index.html (that loads dist/module.js)
/dist/module.js
/dist/module.wasm
/dist/module.data

module.wasm is indeed requested as /dist/module.wasm, but module.data is requested as /module.data, contrary to docs:

Changing the data file location
By default, the .data file containing all the preloaded files is loaded from the same URL as your .js file.

Explicit locateFile(package_name) {return '/dist/' + package_name} helped, but it would be nice if it was not needed

コントリビューターガイド