你能帮我解决这个问题吗?我实现的形式没有形式或html符号。beginform,因为我通过Ajax调用调用控制器/API,并且基于状态消息/成功,我希望根据需求重定向到某些页面。请注意,我不应该跳过已经为控制器方法实现的防伪方法。谢谢。
但是我无法继续,因为"所需的防伪表单字段__RequestVerificationToken不存在"
我的观点如下:
""<input data-bind="value: UserName" type="text" name="username" />
<button type="button" data-bind="click:LoginMethod"> Login </button>""
Ajax代码如下
self.LoginMethod = function () {
//Ajax call to Insert the Customer record
$.ajax({
type: "POST",
url: "http://localhost:8089/Home/SignIn/",
data: ko.toJSON(CustData), //Convert the Observable Data into JSON
success: function (data) {
console.log("success");
alert("Record Added Successfully");
},
error: function () {
console.log("failed");
alert("Failed");
}
});
感谢你的帮助。
将data: ko.toJSON(CustData)更改为data: ko.toJS(CustData)。你应该可以进入