1

私はlocalhostと私のajaxリクエストに取り組んできました

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

うまく動作します。

しかし、展開サーバー (Windows Azure クラウド サービス) では、URL は空です: ''

どこからデバッグを開始すればよいかわかりません。

4

1 に答える 1

1

そのアクションへのルートに必要なパラメーターが欠落していないことを確認してください。

また、パラメーターで言及することを忘れないようにareaしてください。

Url.Action("IdentityProviders", "Account",
    new {
        area = "did you forget the area?",
        serviceNamespace = "traffictheory",
        appId = "http://traffictheory.cloudapp.net/",
        requiredParamThatYouForgot = "missing value"
    })
于 2013-01-17T17:09:07.080 に答える