首頁 >web前端 >js教程 >如何管理部署到子資料夾的 MVC 應用程式的 URL 修改?

如何管理部署到子資料夾的 MVC 應用程式的 URL 修改?

Barbara Streisand
Barbara Streisand原創
2024-10-29 08:10:03901瀏覽

How do you manage URL modifications for MVC applications deployed to subfolders?

了解應用程式子資料夾的URL 修改

在開發部署到子資料夾的MVC 應用程式時,必須適應應用程式子資料夾中的更改基本網址。這可確保 JavaScript 參考和 URL 在本機和部署環境中正常運作。

確定應用程式根的解決方案

要確定根URL 並相應地修改JavaScript,有兩種方法:

簡單方法:

  • 利用JavaScript URL 中的前導「/」字元。
  • 例如,當從部署到“Jobs”子資料夾的MVC 應用程式引用“JobsController”時,請使用URL“/jobs/GetIndex”而不是“http://site/jobs/GetIndex” 。

綜合方法:

  • 利用 Razor 視圖的 Url.Content 輔助方法產生應用程式基本 URL。
  • 實例化 JavaScript 命名空間物件並指派應用程式基本 URL到變數。
  • 在 JavaScript 中使用指派的變數來建構其他 URL。

使用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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn