将输入类型文件添加或附加到ng2-tree中的子节点

时间:2019-05-30 12:13:55

标签: angular typescript angular-tree-component

Am使用ng2-tree接受用户输入。对于子节点,我需要一个输入文本框和一个输入文件类型,用户可以在其中附加文件。

我可以将子输入类型文件附加到子节点。但是我在控制台中看不到任何输出。

我无法调用onChangeFiles()并在其中打印语句。

我使用Angular。

public somefunction(e: NodeEvent){

if(e.node.parent.hasChildren(){
e.node.value='<input type="file" (change)="onChangeFiles()">'+e.node['value'];
}
}

 public onChangeFiles(){
    console.log("file upload")
}

预期的o / p:文件上传

帮助表示赞赏。

0 个答案:

没有答案