无法从 POST 请求“ASP.net”读取 JSON 对象
我在 POST 请求中获取了一个 JSON 对象(即 NewDataSet),请参见下图(Firebug 请求对象)...
我如何在服务器端获取此对象?
谢谢 极限主义者
I'm getting a JSON object(i.e. NewDataSet) in the POST request, see image below (Firebug-request object)...
How can i get this object at server side ??
Thanks
Xtremist
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将创建一个与您发布到服务器的 JSON 对象相匹配的服务器端对象。
在你的 web 服务中,你可以像这样设置服务定义:
你需要告诉你的客户端发布脚本你正在发送 json:
如果我没记错的话,这将告诉 ASP.NET 将你的 JSON 对象反序列化到 .NET 类中。
I would create a server side object matching the JSON object you are posting to the server.
In your webservice you can setup the service definition like this:
You need to tell your client side posting script that you are sending json:
If I remember correctly this will tell ASP.NET to deserialize your JSON object into the .NET class.
在 JSON.net 上查看信息
Checkout information on JSON.net