我正在尝试使用 jQuery 提交表单数据。我正在使用 ASP.NET WebMatrix。在 .cshtml 文件中,我有
@{
// other code
if(IsPost)
{
var item = new Item();
item.Title = Request.Form["title"];
item.Description = Request.Form["description"];
// aditional code here
}
}
<script type="text/javascript">
$(document).ready(function(){
$("form#itemForm").submit(function(){
$.post("form.cshtml", {
title: $("#title").val(),
description: $("#description").val(),
price: $("#price").val()},
function(data){
},
"json");
})
});
</script>
<form>
<!-- html form here -->
</form>
如何将值从表单传递到 Request.Form 对象?我怎样才能将 json 响应返回到 html?