这一次我有一个比其他问题更具概念性的问题…
所以这里没有太多的实际代码。
原文链接:https://www.f2er.com/angularjs/147702.html所以这里没有太多的实际代码。
我有这个AngularJS应用程序。一切工作正常。
现在我需要在特定条件成真时显示不同的弹出窗口,我想知道什么是最好的方式继续。
目前我正在评估两个选项,但我绝对对其他选项(如果更好)。
(选项1)
I could create the new html element for the popup,and append to the
@H_301_14@
DOM directly from the controller.这将打破MVC设计模式。
我对这个解决方案不满意。
(选项2)
I could insert always the code for all the popups in the static html
file.Then,using
@H_301_14@ngShow
,I can hide/show only the correct popup.这个选项不是真正可扩展的。
所以我很肯定有必要有一个更好的方式来实现我想要的。
一如既往,欢迎任何帮助。
先谢谢你