为什么我的简单ExtJS数据示例与关联不起作用?

时间:2013-02-01 15:13:01

标签: javascript extjs proxy associations has-one

从我的观点来看,我在ExtJS中建立了最简单的模型关联方式。

型号: 发布 - hasOne - > 用户

我做了什么:

  • 使用内存代理
  • 遵循规则:模型中的代理
  • Post.load(...)加载帖子对象。

但是当我尝试获取用户对象时,它没有正确加载:
(这里是完整的来源:http://jsfiddle.net/7XRw4/4/

Ext.define('Post', {
    extend: 'Ext.data.Model',
    fields: ['user_id', 'content'],
    hasOne: 'User',
    proxy: {
        type: 'memory',
        data: {
            posts: [
                {id:1, user_id:1, content:'foo'},
                {id:2, user_id:1, content:'bar'}
            ]
        },
        reader: {
            type: 'json',
            root: 'posts'
        }
    }
});


Ext.define('User', {
    extend: 'Ext.data.Model',
    fields: ['name'],
    proxy: {
        type: 'memory',
        data: {
            users: [
                {id:1, name:'hans'},
                {id:2, name:'klaus'}
            ]
        },
        reader: {
            type: 'json',
            root: 'users'
        }
    }
});

Ext.onReady(function() {
    console.log("Ext.onReady() invoked...");

    Post.load('1', {
        success: function(record, operation) {
            thePost = record;

            console.log('thePost:', thePost);
            theUser = thePost.getUser();
            console.log('theUser:', theUser);

            alert('The user name: ' + theUser.get('name'));
            // The user object will not be right loaded! Why?
        }
    });

});

1 个答案:

答案 0 :(得分:0)

.getUser不是异步的吗?这意味着你应该为它提供一个成功函数并在该成功函数中提醒用户的名字吗?

但是我在Ext中遇到了很多关于hasOne关系的问题。文档,教程,对文档的评论 - 如果你不在json中发送完整的关系,他们永远不会同意也无效。