mycode的:
对象:
public class Person
{
private string _Nome;
private DateTime _Nascimento;
public string Nome { get { return _Nome; } }
public DateTime Nascimento { get { return _Nascimento; } }
public Person(string Nome, DateTime Nascimento)
{
_Nome = Nome;
_Nascimento = Nascimento;
}
}
页面(WebMethods):
[WebMethod]
public static Person SendPerson()
{
return new Person("Jhon Snow", DateTime.Now);
}
[WebMethod]
public static string ReceivePerson(Person oPerson)
{
return "OK!";
}
的javascript:
var Person;
GetPerson();
SendPersonBack();
function GetPerson()
{
$.ajax({
type: "POST",
url: "frmVenda.aspx/SendPerson",
data: {},
contentType: "application/json; charset=utf-8",
success: function (RequestReturn) {
Person = RequestReturn.d;
console.log(Person);
},
error: function (error) {
alert(error.statusText);
}
});
}
function SendPersonBack()
{
$.ajax({
type: "POST",
url: "frmVenda.aspx/ReceivePerson",
data: JSON.stringify({"oPerson": Person}),
contentType: "application/json; charset=utf-8",
success: function (RequestReturn) {
alert(RequestReturn.d);
},
error: function (error) {
alert(error.statusText);
}
});
}
我将对象正常发送到客户端,但无法将其接收回服务器。 如果对象和它们的属性相同,为什么不能收回它。 问题出在哪里?
答案 0 :(得分:1)
查看您提供的链接可能会发现问题。
您的代码:data: JSON.stringify({"oPerson": Person}),
正确的代码:数据:"{oPerson:" + JSON.stringify(Person) + "}",
在我看来,您正在向服务器发送格式错误的Json
另外,请尝试在通话中添加dataType: 'json'
。
答案 1 :(得分:1)
我通过创建一个没有参数的构造函数,将所有属性设置为字符串并在自定义对象(Person)的所有属性上添加set方法来解决问题。
public class Person
{
private string _Nome;
private string _Nascimento;
public string Nome { get { return _Nome; } set { _Nome = value; } }
public string Nascimento { get { return _Nascimento; } set { _Nascimento= value; } }
public Person()
{
}
public Person(string Nome, DateTime Nascimento)
{
_Nome = Nome;
_Nascimento = Nascimento.ToString();
}
}
答案 2 :(得分:0)
您正在从webService返回一个对象,但您在ajax中的内容类型是json!您应该在两种方法中以json格式创建数据并返回一个字符串而不是对象:
[WebMethod]
public static static SendPerson()
{
JavaScriptSerializer TheSerializer = new JavaScriptSerializer();
return TheSerializer.Serialize(new Person("Jhon Snow", DateTime.Now));
}
对于第二种方法,只需从ajax中删除content-type或将其替换为:
application/x-www-form-urlencoded; charset=UTF-8