我有一个购买表单,可以根据模型接收一些数据,但是在这里,控制器中的我的Purchase_return对象没有接收任何数据。它正在接收productId 0,而productNm为null。谁能指出这是怎么回事? html:
<form id="Purchase_ReturnForm">
<div>
<table>
<tr>
<td>
@Html.LabelFor(model => model.ProductId)
</td>
<td>
@Html.TextBoxFor(model => model.ProductId)
</td>
<td>
<input type="button" id="btnFind" value="Find" />
</td>
</tr>
<tr>
<td>
@Html.LabelFor(model => model.ProductNm)
</td>
<td>
<span id="edit">
@Html.TextBoxFor(model => model.ProductNm)
</span>
</td>
</tr>
</table>
</div>
</form>
脚本:
<script>
$(document).ready(function () {
$('#btnFind').click(function () {
var data = $('Purchase_ReturnForm').serialize();
$.ajax({
type: 'Post',
url: '/Purchase_Return/FindProductInvoice',
data: data,
success: function () {
}
})
});
});
</script>
在控制器中:
public ActionResult FindProductInvoice(Purchase_Return purchase_Return)
{
return View();
}
和模型
public class Purchase_Return
{
//public DateTime ReturnDt { get; set; }
//public int ReturnSl { get; set; }
//public DateTime PurchaseDt { get; set; }
//public int PurchaseSl { get; set; }
//public double TotReturnAmt { get; set; }
//public double TotVat { get; set; }
//public double TotDiscount { get; set; }
//public int CustomerSupplyId { get; set; }
[Display(Name="Product")]
public int ProductId { get; set; }
public string ProductNm { get; set; }
//public double PurchaseRt { get; set; }
//public double PurchaseQty { get; set; }
//public double ProductDisAmt { get; set; }
//public double ProductVat { get; set; }
//public string ReturnNote { get; set; }
//public int InsertUserId { get; set; }
}
答案 0 :(得分:1)
在数据中添加#号,是因为您使用ID选择器来捕获表单数据。
^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})
它应该可以按预期工作。