Asp.Net Core MVC传值 Asp.Net Core API 前台写法
2021-03-02 09:27
标签:添加 data for tty cli pos func ons asp $("#Add_User").click(function () { Asp.Net Core MVC传值 Asp.Net Core API 前台写法 标签:添加 data for tty cli pos func ons asp 原文地址:https://www.cnblogs.com/GaoHao518/p/13053514.html
var obj = {
//"属性名": 传递的值,
"User_Name": $("#User_Name").val(),
"User_PassWord": $("#User_PassWord").val(),
"User_Email": $("#User_Email").val(),
"User_Phone": $("#User_Phone").val(),
"User_Card": $("#User_Card").val()
};
$.ajax({
url: "默认地址/api/控制器方法/动作方法名,
type: "post",
dataType: "json",
data: obj,
accepts: "application/x-www-form-urlencoded", //非加不可
contentType: "application/x-www-form-urlencoded", //非加不可
success: function (data) {
console.log(data);
if (data > 0) {
alert(‘添加成功!‘);
} else {
alert(‘添加失败!‘);
}
}
});
文章标题:Asp.Net Core MVC传值 Asp.Net Core API 前台写法
文章链接:http://soscw.com/index.php/essay/58974.html