gpt4 book ai didi

javascript - 嵌套 JSON 结构的 Extjs 模型

转载 作者:行者123 更新时间:2023-12-02 23:58:34 26 4
gpt4 key购买 nike

考虑以下 JSON 结构

{
"id": 123,
"name": "Ed",
"orders": [
{
"id": 50,
"total": 100,
"order_items": [
{
"id": 20,
"price": 40,
"quantity": 2,
"product": {
"id": 1000,
"name": "MacBook Pro"
}
},
{
"id": 21,
"price": 20,
"quantity": 3,
"product": {
"id": 1001,
"name": "iPhone"
}
}
]
}
]
}

这是我的模型

Ext.define("User", {
extend: 'Ext.data.Model',
fields: [
'id', 'name'
],

hasMany: {model: 'Order', name: 'orders', associationKey: 'orders'}
});

Ext.define("Order", {
extend: 'Ext.data.Model',
fields: [
'id', 'total'
],

hasMany : {model: 'OrderItem', name: 'orderItems', associationKey: 'order_items'}
});

Ext.define("OrderItem", {
extend: 'Ext.data.Model',
fields: [
'id', 'price', 'quantity'
],
hasOne : {
model: 'Product',
name: 'product',
associationKey: 'product'
}
});

Ext.define("Product", {
extend: 'Ext.data.Model',
fields: [
'id', 'name'
]
});

当我在商店中加载数据然后检查商店记录时,我看到了这一点

enter image description here

我没有收到订单和里面的东西。我定义模型的方式肯定有问题,但我似乎无法弄清楚。提前致谢。

更新这是我的商店以及我如何加载数据

Ext.define('Company.store.TestOrders', {
extend: 'Ext.data.Store',
alias: 'store.testorders',
model: 'User',
data:[
{
"id": 123,
"name": "Ed",
"orders": [
{
"id": 50,
"total": 100,
"order_items": [
{
"id": 20,
"price": 40,
"quantity": 2,
"product": {
"id": 1000,
"name": "MacBook Pro"
}
},
{
"id": 21,
"price": 20,
"quantity": 3,
"product": {
"id": 1001,
"name": "iPhone"
}
}
]
}
]
}],
storeId: 'TestOrders',
proxy: {
type: 'memory'
}
});

然后我使用查看数据

Ext.getStores('TestOrders').getAt(0);

最佳答案

也许您正在寻找从用户商店获取订单和订购商品的方法?

您可以使用方法record.orders()从用户记录中获取订单集合。订单集合记录中的订单商品也是如此:order_record.order_items()

检查这个example on fiddle

关于javascript - 嵌套 JSON 结构的 Extjs 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55273302/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com