https://segmentfault.com/a/11...
以前參照上面文章 能夠實現絕對路徑的引入 可是在vscode中 require函數沒法自動提示路徑 而且require的模塊也不能自動提示json
爲了解決這個問題segmentfault
1.根目錄創建 jsconfig.json
文件api
{ "compilerOptions": { "target": "ES6", "baseUrl": ".", "paths": { "/*": ["./*"] } } }
2.在使用 require
函數的js文件 最前面加上app
const app = getApp(); (function () { require = app.require; })();
3.使用函數
const CommonApi = require("/api/common"); //可自動提示路徑 CommonApi.CallApi1(); //能夠自動提示出方法 可配合d.ts食用