无法从 POST 请求“ASP.net”读取 JSON 对象

发布于 2024-12-09 11:13:40 字数 177 浏览 1 评论 0原文

我在 POST 请求中获取了一个 JSON 对象(即 NewDataSet),请参见下图(Firebug 请求对象)...

在此处输入图像描述

我如何在服务器端获取此对象?

谢谢 极限主义者

I'm getting a JSON object(i.e. NewDataSet) in the POST request, see image below (Firebug-request object)...

enter image description here

How can i get this object at server side ??

Thanks
Xtremist

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

混吃等死 2024-12-16 11:13:40

我将创建一个与您发布到服务器的 JSON 对象相匹配的服务器端对象。

public class DataPackage
{
    public string CostType {get; set;}
    public string CostName {get; set;}
    public bool isEditable {get; set;}
    ...
}

在你的 web 服务中,你可以像这样设置服务定义:

[System.Web.Script.Services.ScriptMethod(ResponseFormat = System.Web.Script.Services.ResponseFormat.Json, XmlSerializeString = false)]
public void MyWebservice(DataPackage NewDataSet) {
    ...
}

你需要告诉你的客户端发布脚本你正在发送 json:

contentType: 'application/json'

如果我没记错的话,这将告诉 ASP.NET 将你的 JSON 对象反序列化到 .NET 类中。

I would create a server side object matching the JSON object you are posting to the server.

public class DataPackage
{
    public string CostType {get; set;}
    public string CostName {get; set;}
    public bool isEditable {get; set;}
    ...
}

In your webservice you can setup the service definition like this:

[System.Web.Script.Services.ScriptMethod(ResponseFormat = System.Web.Script.Services.ResponseFormat.Json, XmlSerializeString = false)]
public void MyWebservice(DataPackage NewDataSet) {
    ...
}

You need to tell your client side posting script that you are sending json:

contentType: 'application/json'

If I remember correctly this will tell ASP.NET to deserialize your JSON object into the .NET class.

红墙和绿瓦 2024-12-16 11:13:40

JSON.net 上查看信息

Checkout information on JSON.net

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文