在创建 angularJS 应用程序时,将几乎所有“组件”创建为指令是最佳实践吗?当我说组件时,我指的是任何一组执行功能的 HTML 元素。例子:
登录:
- <input type="text" name="username" />
- <input type="password" name="password" />
- <button>Login</button>
事件:
- <h3>Title</h3>
- <input type="date" name="eventStart" />
- <p>This is an event description</p>
博文:
- <h3>Title</h3>
- <small>Blog meta - Blog Author</small>
- <p>This is a post blah blah blah</p>