私のコントローラにこのメソッドがあります。 asp.mvcでAjax呼び出しが機能しません
public string GetTime(string zone)
{
DateTime time = DateTime.UtcNow.AddHours(offsets[zone]);
return string.Format("<div>The time in {0} is {1:h:MM:ss tt}</div>", zone.ToUpper(), time);
}
private Dictionary<string, int> offsets = new Dictionary<string, int> { { "utc", 0 }, { "bst", 1 }, { "mdt", -6 }};
この
は私のhtmlです:@{
ViewBag.Title = "Statistics";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<html>
<head runat="server">
<script src="@Url.Content("~/Scripts/MicrosoftAjax.js")"
type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/MicrosoftMvcAjax.js")"
type="text/javascript"></script>
</head>
<body>
<h2>
Statistics</h2>
<h2>
What time is it?</h2>
<p>
Show me the time in:<br />
@Ajax.ActionLink("UTC", "GetTime", new { zone = "utc" }, new AjaxOptions { UpdateTargetId = "myResults" })<br />
@Ajax.ActionLink("BST", "GetTime", new { zone = "bst" }, new AjaxOptions { UpdateTargetId = "myResults" })
<br />
@Ajax.ActionLink("MDT", "GetTime", new { zone = "mdt" }, new AjaxOptions { UpdateTargetId = "myResults" })
<br />
</p>
<div id="myResults" style="border: 2px dotted red; padding: .5em;">
Results will appear here
</div>
<p>
This page was generated at @DateTime.UtcNow.ToString("h:MM:ss tt") (UTC)
</p>
</body>
</html>
問題は時間が(ポストバックがするのではなく、そこにあることを意味空白のページに表示時間element..butのdivに表示されますdoesntのことですajax呼び出し)。なぜそれが起こるのですか?あなたがあなたのunobstrusive jQueryのファイルが含まれていないようだ
<script src="../../Scripts/jquery-1.5.1-vsdoc.js" type="text/javascript"></script>
<script src="/Scripts/jquery.unobtrusive-ajax.js" type="text/javascript"></script>
<script src="/Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script src="/Scripts/MicrosoftMvcAjax.js" type="text/javascript"></script>
戻り値の型として 'ActionResult'を使用し、' Content( "どんな文字列")でも '値を取得しようとします。 – Oybek
このファイルがロードされていることを確認したことがありますか。 – BlackFire27