gpt4 book ai didi

ember.js - 如何将 View 附加到 View 内的 div 中?

转载 作者:行者123 更新时间:2023-12-02 22:14:48 25 4
gpt4 key购买 nike

我正在尝试按 id 将 View 附加到占位符 div,与此处的答案一致:How can I dynamically insert a new template into the DOM with Ember?

insertInfoBox:function (context) {
var infoBoxView = App.LocatorInfoBox.create({
context:context
});

infoBoxView.appendTo('#infoBoxHolder');
},

我收到以下错误:未捕获错误:

断言失败:您无法追加到现有的 Ember.View。考虑改用 Ember.ContainerView。

“infoBoxHolder”div 嵌套在另一个 View 中,但其本身并不是 View 。如果我将 infoBoxView 设置为 ParentView 的子级(如果我将父级更改为容器 View ),我不清楚如何将 View 插入子 div 'infoBoxHolder' 而不是直接插入父容器 View 的根元素.

最佳答案

我不确定您为什么要这样做,但您可以使用 didInsertElement 函数。类似于:

App.MyView = Ember.View.extend({
didInsertElement: function() {
$('#elementId').append(...);
}
});

我的做法是通过模板,例如:

App.MyView = Ember.View.extend({
template: Ember.Handlebars.compile('{{#if someCondition}}{{MyApp.MyOtherView valueBInding="..."}}{{/else}}');
});

关于ember.js - 如何将 View 附加到 View 内的 div 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13766442/

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