我开始使用 Dashboard ,其中Angular和React用于客户端,而Node js用作服务器端。
我正在经历一些架构,我发现了这个:
查看:
<html ng-app="my-dashboard">
<body>
<div class="Some structuring thing">
<ng-include src="my-header.html"></ng-include>
</div>
<div class="Some other thing">
<ng-include src="my-sidebar.html"></ng-include>
</div>
etc...
</body>
</html>
控制器:
<div ng-controller="my-header-text">
<p ng-bind="title">
etc...
</div>
<div ng-controller="my-header-login">
<p ng-click="login()">Login</p>
etc...
</div>
从这些代码中,是否可以为类似于this的应用铺平道路?
感谢。