我有一個複雜功能來顯示ValidationMessageFor或mvc範圍,我有一個ajax方法來檢查一個id bd並且它返回一個布爾值,如果需要這個結果,這個結果。如何顯示ValidationMessageFor來自js
function ExistProduct() {
$.ajax({
type: 'GET',
url: "/Products/ExistProduct",
contentType: "application/json;charset=utf-8",
data: JSON.stringify({ "id": id }),
datatype: "json",
success: function (data) {
if (data.exist == true) {
// show ValidationMessageFor
}
else {
}
}
});
}
,我可以解決此,不允許提交申請並保存
您是否想驗證產品是否存在?如果是這樣,請使用RemoteAttribute [如何:在ASP.NET MVC中實現遠程驗證](https://msdn.microsoft.com/en-us/library/gg508808(VS.98).aspx)。不要試圖重新發明輪子 –