我正在动态创建闪电组件。在回调时,我面临一个不应该出现的奇怪错误。
$A.createComponent(
"c:TestComponent",
{
parameter1 : "hey"
},
function(newComponent, status){
var con = component.find('container');
if (component.isValid() && con.isValid() && status === 'SUCCESS') {
var body = con.get("v.body");
body.push(newComponent);
con.set("v.body", body);
}
});
和 .cmp 文件我有
<div aura:id="container" class="slds-align-top">
</div>
我在 if 条件下遇到错误。
con.isValid is not a function
由于容器本身无效,我无法读取要包含新创建组件的容器主体?怎么了?