gpt4 book ai didi

angularjs - 提供 url 到 angular $http.get/.post 的最佳方式

转载 作者:行者123 更新时间:2023-12-05 01:05:45 24 4
gpt4 key购买 nike

我在 MVC4 中使用 angular。我想使用 $http.get() 从 javascript 调用 MVC Controller 方法。它需要一个网址(显然)。我希望这是一个相对路径,但我该怎么写呢?我的 Controller 在 Controllers/Api/ExampleController 中。即使我将 javascript 文件移动到另一个位置,我也希望解析路径,这意味着我希望路径相对于应用程序根目录而不是 javascript 文件。我试过“~/Controllers/Api/ExampleControllerMethod”和“Controllers/Api/ExampleController/Method.

最佳答案

$location服务确实提供来自 url 的信息。所以,你可以构造一些东西,然后使主机和端口动态:

var url = $location.host() + '/Controllers/Api/ExampleControllerMethod';

从文档:
**url: http://www.example.com/base/path?a=b#h**
$location.protocol() = http
$location.host() = www.example.com
$location.port() = 80
$location.path() = /path
$location.search() = {"a":"b"}
$location.hash() = h

关于angularjs - 提供 url 到 angular $http.get/.post 的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21019747/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com