我正在尝试使用已部署的网络服务映射Ionic移动应用。
我想插入表单数据,以便可以通过.NET asmx Web服务在数据库中更新它。 ajax代码如下:
$.ajax({
url: 'http://localhost:5096/AndroidWebService.asmx/InsrtTblEmp', type: "POST",
contentType: "application/json",
data: //what to do here?,
dataType: "json",
success: function (result) {
var jEl = $("#divMessage");
jEl.html(result.d).fadeIn(1000);
setTimeout(function () { jEl.fadeOut(1000) }, 5000);
},
error: function (xhr, status) {
alert("An error occurred: " + status);
}
});
这是asmx web服务的代码:
[WebMethod]
//public string InsrtTblEmp(int EmpId, string LeaveType, DateTime DateFrom, DateTime DateTo, float? LeaveDays, string Remarks)
public string InsrtTblEmp(TblEmpLeaveDat TblEmpDat)
{
string msg ="";
try
{
var obj = new tblEmpLeave()
{
EmpId = TblEmpDat.EmpId,
LeaveAvailType = TblEmpDat.LeaveAvailType,
DateFrom = TblEmpDat.DateFrom,
DateTo = TblEmpDat.DateTo,
LeaveDays = TblEmpDat.LeaveDays,
Remarks = TblEmpDat.Remarks
};
Db.tblEmpLeaves.Add(obj);
Db.SaveChanges();
msg = "Record insert successfully";
}
catch(Exception ex)
{
msg = ex.Message;
}
return msg;
}
}
根据我的理解,Web服务只接受对象数据类型。第一个问题:我可以在jquery中创建对象吗?
使用此Web服务会更有效吗?或者我应该修改它,以便它采用硬编码的字符串值而不是对象。
任何帮助都将不胜感激。
答案 0 :(得分:1)
If the names of the fields in your form are the same as they are in your model, you can do this:
var frm = $(document.myform);
var formData = JSON.stringify(frm.serializeArray());
$.ajax({
url: 'http://localhost:5096/AndroidWebService.asmx/InsrtTblEmp',
type: "POST",
contentType: "application/json",
data: formData,
dataType: "json",
success: function (result) {
var jEl = $("#divMessage");
jEl.html(result.d).fadeIn(1000);
setTimeout(function () { jEl.fadeOut(1000) }, 5000);
},
error: function (xhr, status) {
alert("An error occurred: " + status);
}
});
If the form names are different, you set the data in formData like this:
var formData= {
EmpId: $('.input1').val(),
LeaveAvailType: $('.input2').val(),
DateFrom: $('.input3').val(),
DateTo: $('.input4').val(),
LeaveDays: $('.input5').val(),
Remarks: $('.input6').val()
};