0

从我的角度来看,我用 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?
        }
    });

});
4

1 回答 1

0

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

但是我在 Ext 中的 hasOne 关系上有很多问题。文档、教程、对文档的评论 - 如果您不在 json 中发送完整的关系,它们永远不会同意并且没有任何效果。

于 2013-02-14T09:39:52.163 回答