基本模式是在 Controller 中创建 PartialView 结果并使用该结果更新页面上某些容器的 innerHTML:
HTML
<input type="button" onclick="UpdateMyContainer();" value="Update" />
<div id="MyContainer">
@Html.Partial( "_MyPartialView", Model )
</div>
JavaScript
遵循Ajax without jQuery for 初学者来创建不需要 JQuery 的 Ajax 方法。本质上:
function UpdateMyContainer() {
var xmlHttp = createXMLHttp();
// set your controller URL here:
xmlHttp.open('get', 'Url/To/SomeMethodInController', true);
xmlHttp.send(null);
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState === 4) {
if (xmlHttp.status === 200) {
// Set the Id of the container to update here:
document.getElementById('MyContainer').innerHTML = xmlHttp.responseText;
} else {
alert('Error: ' + xmlHttp.responseText);
}
} else {
//still loading
}
};
}
上面的 JS 可以进一步重构以获取要更新的元素的 URL 和 ID。
控制器
[HttpPost]
public PartialViewResult SomeMethodInController()
{
var model = MethodToRetreiveModel();
return PartialView( "_MyPartialView", model );
}