gpt4 book ai didi

ember.js - Emberjs : show outlet on certain conditional

转载 作者:行者123 更新时间:2023-12-03 09:29:18 32 4
gpt4 key购买 nike

我想根据 socket 的存在显示一些 HTML 块。我试过这段代码,但它不起作用。我错过了什么吗?

{{#if outlet}}
<table class="col-sm-9">
some content
</table>
<table class="col-sm-3">
{{outlet}}
</table>
{{else}}
<table class="col-sm-12">
some content
</table>
{{/if}}

编辑:

我的情况是如果我在路线上 customers然后 outlet是隐藏的,否则如果我在路线上 customers.create然后 outlet是表演。有没有没有触摸的简单方法 router.js文件?

最佳答案

您是否尝试过命名 socket ,然后在路由器中呈现特定 socket 的内容。

请查看 http://emberjs.com/guides/routing/rendering-a-template/
像这样的东西,在指南中提到。

App.PostRoute = App.Route.extend({
renderTemplate: function() {
this.render('favoritePost', { // the template to render
into: 'posts', // the template to render into
outlet: 'posts', // the name of the outlet in that template
controller: 'blogPost' // the controller to use for the template
});
this.render('comments', {
into: 'favoritePost',
outlet: 'comment',
controller: 'blogPost'
});
}
});

关于ember.js - Emberjs : show outlet on certain conditional,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26030197/

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