extjs嵌套json存储rails

发布于 2024-11-01 04:02:27 字数 568 浏览 1 评论 0原文

我正在尝试发布有一些硬编码记录的 ext js json 存储。 Customer 和 Customer 之间存在一对多关系。产品..

{
    "customers": [
        {
            "id": 123,
            "name": "Ed",
            "products": [
                {
                    "id": 50,
                    "prodnm": "xyz",
                     rate:20,
                },
                {
                    "id": 60,
                    "prodnm": "abc",
                     rate:30,
                }                    
            ]
        }
    ]
}

我正在使用导轨和想检查我是否得到正确的 json 响应..请帮助..

i am trying to post ext js json store that has some hard coded records..
there is one-to-many relationship between Customer & Product..

{
    "customers": [
        {
            "id": 123,
            "name": "Ed",
            "products": [
                {
                    "id": 50,
                    "prodnm": "xyz",
                     rate:20,
                },
                {
                    "id": 60,
                    "prodnm": "abc",
                     rate:30,
                }                    
            ]
        }
    ]
}

iam using rails & want to check whether i m getting proper json response..plz help..

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

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

发布评论

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

评论(2

染火枫林 2024-11-08 04:02:27

为此,您可以使用此代码从商店获取 json。

function getJsonOfStore(store){
    var datar = new Array();
    var jsonDataEncode = "";
    var records = store.getRange();
    for (var i = 0; i < records.length; i++) {
        datar.push(records[i].data);
    }
    jsonDataEncode = Ext.util.JSON.encode(datar);
    return jsonDataEncode;
}

在控制台中打印该 json,然后复制该 json 并将其粘贴到 此处,单击格式,它将显示格式化的 json 。

For that you can use this code to get the json from store.

function getJsonOfStore(store){
    var datar = new Array();
    var jsonDataEncode = "";
    var records = store.getRange();
    for (var i = 0; i < records.length; i++) {
        datar.push(records[i].data);
    }
    jsonDataEncode = Ext.util.JSON.encode(datar);
    return jsonDataEncode;
}

print that json in console then copy that json and past it here, click on format it will show you a formated json.

几味少女 2024-11-08 04:02:27

检查响应的最佳方法是使用 Fiddler

The best way to check the response is by using Fiddler

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