gpt4 book ai didi

javascript - Ember .get ('lastObject')未按预期工作

转载 作者:行者123 更新时间:2023-12-02 18:46:57 26 4
gpt4 key购买 nike

我有一个表单提交给我的 PlaylistController 上的方法。根据该表单提交,我创建了歌曲记录并提交。发生的情况是所有提交都工作正常。保存并提交新记录。我可以执行 App.Song.find() 并看到内容已更新。

但是第二次提交出错了。提交实际上是作为一条新记录提交的,当我转到模型时,我发现它存储了另一个新值。但是,当我尝试在 find() 上使用 .get('lastObject') 时,我得到了第一次提交。第三次提交返回第二次,依此类推。

这是我的代码:

 // create song in Song model first
new_song = App.Song.createRecord({
name: 'test name',
artist: 'test username',
soundcloud: '/tracks/'
});

new_song.get('store').commit();

//can't return the song ID when commiting, so need to manually find it
// find all songs, return last result
last_song = App.Song.find().get('lastObject');
console.log(last_song);

这是一个 console.log(songs_array.get('last_song'));输出:

Object {id: "ember914", clientId: 30, type: function, data: Object, record: Class}
Object {id: "ember914", clientId: 30, type: function, data: Object, record: Class…}
Object {id: "ember1200", clientId: 31, type: function, data: Object, record: Class…}
Object {id: "ember1408", clientId: 32, type: function, data: Object, record: Class…}

最佳答案

这里的问题是您试图在创建新歌曲后直接找到它。这将不起作用,因为它是在 Ember Run Loop 的后期添加到 find() 数组中的。 .

最明显的解决方案是:

// create song in Song model first
new_song = App.Song.createRecord({
name: 'test name',
artist: 'test username',
soundcloud: '/tracks/'
});

new_song.get('store').commit();

Em.run.next(function() {
last_song = App.Song.find().get('lastObject');
});

这是一个fiddle这证明了这一点。

但需要注意的一点是,当您遇到此类问题,并且感觉 Ember 正在对您不利时(尤其是当您开始担心 Run Loop 时),这可能意味着您做错了。

现在的问题是,为什么在创建记录后立即尝试以这种方式查找记录?

如果您只想将记录保存在变量中,那么您已经将其保存在 new_song 中,只需传递该记录即可,稍后将使用 id 填充该记录。请记住,一旦您按照您的方式获得了 last_song,您就会获得 last_song === new_song,那么获得它的意义何在...

如果您需要在创建后立即获取ID(这是非常罕见的情况),您可以这样做:

new_song = App.Song.createRecord({
name: 'test name',
artist: 'test username',
soundcloud: '/tracks/'
});

new_song.one('didCreate', function() {
Em.run.next(function() {
console.log(new_song.get('id'));
});
});

new_song.get('store').commit();

请注意,上面示例中的 Em.run.next 是 ,这只是因为一个很快就会修复的错误。

关于javascript - Ember .get ('lastObject')未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16270311/

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