之前參考上面文章可以實現絕對路徑的引入但是在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食用
推薦教學:《微信公眾號》
以上是微信小程式 絕對路徑 require的詳細內容。更多資訊請關注PHP中文網其他相關文章!