0

我正在动态创建闪电组件。在回调时,我面临一个不应该出现的奇怪错误。

 $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

由于容器本身无效,我无法读取要包含新创建组件的容器主体?怎么了?

4

1 回答 1

0

我刚刚更改了代码,请检查您的端

$A.createComponent(
            "c:TestComponent",
            {
                parameter1 : "hey"
            },
            function(newComponent, status){

                    if (component.isValid()  && status === 'SUCCESS') {
var con = component.find('container');
                        var body = con.get("v.body");
                        body.push(newComponent);
                        con.set("v.body", body);
                    }                
            });

谢谢迪利普

于 2018-03-30T12:42:37.517 回答