gpt4 book ai didi

javascript - Ember.js 模型继承和模板

转载 作者:行者123 更新时间:2023-11-28 01:41:58 25 4
gpt4 key购买 nike

我在 Ember 应用程序的索引模板中显示 2 个模型时遇到问题。

我有 2 个模型,猫和狗,我想在索引路径下显示这两个模型。这看起来应该很简单,但我不太明白。

有人有什么建议吗?

这是我的应用程序 JavaScript 代码

window.App = Ember.Application.create();

App.ApplicationAdapter = DS.FixtureAdapter.extend();

App.Pet = DS.Model.extend({
name: DS.attr('string'),
type: DS.attr('string')
});

App.Cat = App.Pet.extend({
miceKilled: DS.attr()
});

App.Dog = App.Pet.extend({
catsKilled: DS.attr()
});

App.Router.map(function() {
// this.resource('app');
this.route('cat');
this.route('dog');
});

App.CatRoute = Ember.Route.extend({
model: function() {
return this.store.find('cat')
// return App.Cat.find();
},
setupController: function(controller, model) {
controller.set('model', model);
}
});

App.DogRoute = Ember.Route.extend({
model: function() {
return this.store.find('dog')
// return App.Cat.find();
},
setupController: function(controller, model) {
controller.set('model', model);
}
});

App.IndexRoute = Em.Route.extend({
renderTemplate: function() {
this.render('test', { // the template to render
into: 'application', // the route to render into
outlet: 'dog_outlet', // the name of the outlet in the route's template
controller: 'dog' // the controller to use for the template
});
// this.render('cat', {
// into: 'application',
// outlet: 'cat_outlet',
// // controller: 'cat'
// });
}
});

App.Cat.FIXTURES = [
{
id: 1,
name: 'Fluffy',
miceKilled: 5
},
{
id: 2,
name: 'Screwy',
miceKilled: 15
},
{
id: 3,
name: 'Dan',
miceKilled: 2
}
];

App.Dog.FIXTURES = [
{
id: 1,
name: 'Spot',
catsKilled: 1
},
{
id: 2,
name: 'Rufruf',
catsKilled: 3
},
{
id: 3,
name: 'Peter',
catsKilled: 20
}
];

这是我的 HTML 代码。

<!DOCTYPE html>
<html lang="en">
<head>
<title>Testing</title>
</head>

<body>
<script type="text/x-handlebars">
{{#link-to 'index'}}Home{{/link-to}}
{{#link-to 'cat'}}Cats{{/link-to}}
{{#link-to 'dog'}}Dogs{{/link-to}}

{{outlet}}
{{outlet dog_outlet}}
{{outlet cat_outlet}}
</script>

<script type="text/x-handlebars" data-template-name="dog">
Dogs
{{#each}}
<div>
This dogs name is {{name}}, and he's killed {{catsKilled}} cats!
</div>
{{/each}}
</script>

<script type="text/x-handlebars" data-template-name="cat">
Cats
{{#each}}
<div>
This cats name is {{name}}, and he's killed {{miceKilled}} mice!
</div>
{{/each}}
</script>

<script type="text/x-handlebars" data-template-name="test">
Testing
{{controller}}
</script>

<script src="libs/jquery-1.10.2.min.js"></script>
<script src="libs/handlebars-1.0.0.js"></script>
<script src="libs/ember.js"></script>
<script src="libs/ember-data.js"></script>
<script src="custom/ember/app2.js"></script>
</body>
</html>

最佳答案

因此,对于您的具体情况,让我们退后一步。索引路由没有提供任何模型,因此您不会从服务器获取任何数据。仅当您点击关联的 url 时才会点击路线(因此渲染狗的 Controller 和模板不会点击猫的模型路线)。

话虽这么说,如果我们想在索引路由中使用猫和狗的信息,我们需要同时获取它们。这是 rsvp hash https://github.com/tildeio/rsvp.js/blob/master/README.md#hash-of-promises 的绝佳机会

App.IndexRoute = Em.Route.extend({
model: function(){
return Ember.RSVP.hash({
dogs: this.store.find('dog'),
cats: this.store.find('cat')
});
}
});

然后,您无需覆盖 renderTemplate Hook ,只需在模板中渲染并发送模板名称和上下文即可。

<script type="text/x-handlebars" data-template-name="index">
{{render 'dog' dogs}}
{{render 'cat' cats}}
</script>

此外,彼得看起来是最努力的 worker ,而其他两个人却在偷懒,他应该得到款待。

http://emberjs.jsbin.com/OxIDiVU/89/edit

关于javascript - Ember.js 模型继承和模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20819188/

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