這裏給控制器是控制器無法從視圖發送數據(剃刀)通過AJAX POST請求
public ViewResult AddNewRow(ProjectBudgetModel model)
{
//Some oprations goes here on the passed model the return to the same view
return View("AddNewProjectBudget", model);
}
這裏是其具有AJAX調用等
$.ajax({
url: '@Url.Action("AddNewRow", "ProjectBudget")',
type: 'post',
data: {model: '@Model'},
contentType: 'application/json; charset=utf-8;',
dataType: 'json',
success: function (response) {
alert(response.success)
return;
},
error: function (x) {
alert(x.status);
}
});
@Model其是圖在ajax調用的數據頭中傳遞的是ProjectBudgetModel
在這裏出了點問題,具體而我將數據傳遞給控制器 它甚至沒有擊中brekpoint o f控制器中的addNewRow函數
有幫助嗎?
不知道有石器時代的瀏覽器 –
@roasted,當然有。 Internet Explorer 6是這種瀏覽器的一個很好的例子。我記得[Fred Flintstone](http://en.wikipedia.org/wiki/Fred_Flintstone)談論在瀏覽互聯網時遇到問題。 –