了解應用程式子資料夾的URL 修改
在開發部署到子資料夾的MVC 應用程式時,必須適應應用程式子資料夾中的更改基本網址。這可確保 JavaScript 參考和 URL 在本機和部署環境中正常運作。
確定應用程式根的解決方案
要確定根URL 並相應地修改JavaScript,有兩種方法:
簡單方法:
綜合方法:
使用Razor View 和JavaScript 的範例:
// Razor View (Layout file or specific view) <script> var myApp = myApp || {}; // Create or extend the myApp namespace myApp.Urls = myApp.Urls || {}; // Create or extend the Urls object within myApp myApp.Urls.baseUrl = '@Url.Content("~")'; // Assign the app base URL to the baseUrl property myApp.Urls.jobIndexUrl = '@Url.Action("GetIndex","jobs")'; // Assign the specific action URL to the jobIndexUrl property </script> // PageSpecificExternalJsFile.js var urlToJobIndex= myApp.Urls.jobIndexUrl; // Access the specific action URL var urlToJobIndex2= myApp.Urls.baseUrl+"jobs/GetIndex"; // Construct a relative URL using the app base URL </script>
AngularJS 方法:
AngularJS 方法:
AngularJS 方法:以上是如何管理部署到子資料夾的 MVC 應用程式的 URL 修改?的詳細內容。更多資訊請關注PHP中文網其他相關文章!