partial 和 addChild 有什么区别?
what is the difference of partial and addChild?
两者都易于使用,都提供相同的输出。
那么区别是什么呢?使用其中一种有什么好处吗?在性能、安全性或其他方面有什么优势吗?
如果我想在运行时操作视图,我应该使用哪个更好?
如果我们谈论 zend-view,都使用 render 的 view 方法然后递归调用 rendrChild 方法。所以我们可以说没有性能差异。
Here's the zend-view's render method and here partial helper using it
两者都易于使用,都提供相同的输出。 那么区别是什么呢?使用其中一种有什么好处吗?在性能、安全性或其他方面有什么优势吗?
如果我想在运行时操作视图,我应该使用哪个更好?
如果我们谈论 zend-view,都使用 render 的 view 方法然后递归调用 rendrChild 方法。所以我们可以说没有性能差异。
Here's the zend-view's render method and here partial helper using it