gpt4 book ai didi

razor - @Html.Raw(Url.Action(...)) 在部署服务器上计算为空字符串

转载 作者:行者123 更新时间:2023-12-03 03:19:51 25 4
gpt4 key购买 nike

我一直在本地主机和我的ajax请求上工作

$.ajax({
url: '@Html.Raw(Url.Action("IdentityProviders", "Account", new { serviceNamespace = "traffictheory", appId = "http://traffictheory.cloudapp.net/" }))', ...

工作得很好。

但在部署服务器(Windows Azure 云服务)上,URL 为空:''

我不知道从哪里开始调试。

最佳答案

确保您没有遗漏该操作的路由所需的任何参数。

此外,请确保您没有忘记在参数中提及区域

Url.Action("IdentityProviders", "Account",
new {
area = "did you forget the area?",
serviceNamespace = "traffictheory",
appId = "http://traffictheory.cloudapp.net/",
requiredParamThatYouForgot = "missing value"
})

关于razor - @Html.Raw(Url.Action(...)) 在部署服务器上计算为空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12929622/

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