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食用
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。