将数组从 Ext.Net 存储发送到 ASP.NET MVC

发布于 2025-01-07 19:47:56 字数 812 浏览 0 评论 0 原文

我知道论坛上还有其他与此相关的问题,但到目前为止发现了有用的解决方案。 我有一个如此定义的控制器:

    [HttpPost]
    public ActionResult Update(int id, IList<MyObject> data)
    {
        return Json(new { success = false, message = "saved!" });
    }

MyObject 的 Json 数组位于 JsonStore 内,并通过 submitData() 函数调用发送。我可以看到所有内容都正确发送,“data”参数是 MyObject 的数组,如果我手动执行 JSON.Deserialize>>(data) 我得到了我所需要的,这意味着 data 是一个有效的 json 字符串...在标头中我可以看到“application/json”内容类型。 我已经在使用 JsonValueProviderFactory 了,但它没有帮助。根据我的理解,值提供者似乎应该轻松地将数组映射到 IList,所以我想知道我是否做错了什么......

谢谢!

更新 正如一条评论中所述,我的使用场景略有不同:我实际上是通过 Store.submitData() 调用发布此数据...显然,即使标题相似,商店提交也不起作用,因为它实际上生成了一个细绳。

有谁知道如何强制商店执行类似于 JSON.stringify 的操作?

I know there are other questions on the forum regarding this but found ho helpful solution up to now.
I have a controller so defined:

    [HttpPost]
    public ActionResult Update(int id, IList<MyObject> data)
    {
        return Json(new { success = false, message = "saved!" });
    }

A Json Array of MyObject is inside a JsonStore and sent up on the submitData() function call. I can see everything is sent up correctly, the "data" parameter is an array of MyObject, if I manually do JSON.Deserialize<IList<MyObject>>(data) I get exactly what I need, which means that data is a valid json string... in the Headers I can see the "application/json" content-type.
I am using the JsonValueProviderFactory already, but it does not help. From my understanding it seems that the value provider should easily map arrays into IList, so I am wondering if I am doing something wrong...

Thanks!

UPDATE
As noted in one comment I have a slightly different use scenario: I am actually posting this data through a Store.submitData() call... apparently, even though the headers are similar, the store submit does not work because it actually generates a string.

Does anyone have any knowledge on how to force the store to do something similar to JSON.stringify?

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

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

发布评论

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

评论(1

绳情 2025-01-14 19:47:56

您还没有显示您的客户端代码,但以下内容应该可以正常工作:

Ext.Ajax.request({
    url: '@Url.Action("update", new { id = "123" })',
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    params: JSON.stringify({ 
        data: [
            { foo: 'value 1' },
            { foo: 'value 2' },
            { foo: 'value 3' }
        ]
    }),
    success: function (response) {
        alert(response.responseText);
    }
});

它假设 MyObject 的定义如下:

public class MyObject
{
    public string Foo { get; set; }
}

但当然它可以是任何复杂的对象。

You haven't shown your client code but the following should work fine:

Ext.Ajax.request({
    url: '@Url.Action("update", new { id = "123" })',
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    params: JSON.stringify({ 
        data: [
            { foo: 'value 1' },
            { foo: 'value 2' },
            { foo: 'value 3' }
        ]
    }),
    success: function (response) {
        alert(response.responseText);
    }
});

It assumes that MyObject is defined like this:

public class MyObject
{
    public string Foo { get; set; }
}

but of course it could be just any complex object.

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