在我提出“Ajax”请求时,我想通过表格中的数据进入模型。 我不相信这样做是可能的,因此我可能不得不在我的要求中列入我所需要的数据?
我认为,我有 j。 ajax 电话
$.ajax({
url: this.href,
cache: false,
success: function (html) { $("#editorPriceRows").append(html); }
});
在我的控制人中,我有行动
public ActionResult NewDateRow(MyModel model)
{
// here I want to check some of the values i filled out in my form but have not posted yet and depending on this value, I will set some data in the model I am passing to the partial view.
return PartialView("_DateEditRow", partialModel);
}
我需要检查一个日期,以便了解我需要确定什么数据,以说明已经通过部分调查的模式。 这是可能的吗?