共计 362 个字符,预计需要花费 1 分钟才能阅读完成。
https://segmentfault.com/a/11…
之前参照上面文章 可以实现绝对路径的引入 但是在 vscode 中 require 函数无法自动提示路径 并且 require 的模块也不能自动提示
为了解决这个问题
1. 根目录建立 jsconfig.json
文件
{
"compilerOptions": {
"target": "ES6",
"baseUrl": ".",
"paths": {"/*": ["./*"]
}
}
}
2. 在使用 require
函数的 js 文件 最前面加上
const app = getApp();
(function () {require = app.require;})();
3. 使用
const CommonApi = require("/api/common");
CommonApi.CallApi1(); // 可以自动提示出方法 可配合 d.ts 食用
正文完