我试图从同一组件的两个mat对话框函数中调用不同的html div部分。我可以很容易地获得一个部分,但是其他功能也要使用相同的html section。我要求使用两个不同的功能,并且两个html片段来自同一组件,因此function2应该从相同的组件中绘制第二个div。
代码
<div #1>
<p> msg</P>
</div>
<div #2>
<p> msg</P>
</div>
Function1(){
return this.dialog.open(component, {
data:{
Message:mag
}
}):
Function2(){
return this.dialog.open(component, {
data:{
Message:mag2
}
}):
}