我想知道構建angular.js應用程序的最佳方式。我相信所有的指令通過ajax請求下載他們各自的模板。因此,是能夠更好地圍成一個SPA的每個不同部分在一個指令作爲一個單獨的單元與它自己的模板html和控制器:如何構造angular.js應用程序
<html>
<head>
</head>
<body>
<section>
<directive1></directive1>
</section>
<section>
<directive2></directive2>
</section>
<section>
<directive3></directive3>
</section>
</body>
</html>
還是更預留用於DOM操作指令和嵌入裏面的所有控制器主要的html頁面:
<html>
<head>
</head>
<body ng-app="myapp">
<section ng-controller="controller1">
...
</section>
<section ng-controller="controller2">
...
</section>
<section ng-controller="controller3">
...
</section>
</body>
</html>
我想知道每種方法的優點和缺點,在性能,最佳實踐等方面提前 感謝。
問題太廣泛 – charlietfl 2015-04-05 15:16:22