发送至 &在服务器端方法中解码 JSON 数据
我不知道如何将 JSON 数据发送到服务器端函数,也不知道如何将 JSON 数据反序列化到特定的类。
假设我需要通过 json 和 jquery 将客户相关信息从客户端发送到服务器端,并且我希望客户信息将反序列化到服务器端的客户类。请帮我编码&概念。
i dont know how to send JSON data to server side function and also i dont know how to de-serialize the JSON data to a particular class.
suppose i need to send customer related info from client side to server side through json and jquery and i want that customer info will be deserialize to my customer class in the server side. please help me code & concept.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 将自动处理 JSON 反序列化页面方法的参数。
例如,如果您有这个
Person
类:以及一个接受该类型参数的页面方法:
如果您将这样的 JSON 传递到该方法中:
那么,ASP.NET 将自动转换 JSON到
Person
类的实例,并将其作为ThePerson
发送到页面方法中。ASP.NET will handle JSON deserializing a page method's parameters automatically.
For example, if you have this
Person
class:And a page method that accepts a parameter of that type:
If you pass JSON like this into the method:
Then, the ASP.NET will automatically convert the JSON to an instance of the
Person
class and send that into the page method asThePerson
.