问题:点击不同的按钮来实现局部页面指向不同的html显示,且指定controller
难题:我原先是想用指令+双向绑定,发现指令只会编译一次,仆街
之后我用ng-repeat + 指令 发现还是只能编译一次 仆街
最后用$complie服务加html,成功了,但是感觉很不爽,因为最后还是用了jquery了
现在我就想知道有没有其他方法??
还有一个问题是 ng-controller怎么才能双向绑定数据 就是类似ng-controller="{{ctrl}}" 这中的
我不知道是不是其中仆街方案是不是我自己的缘故,希望详解。
1. It is better to use routing to jump to local pages,
ui.router
或者ngRoute
.2. The second one doesn’t quite understand what you mean. Two-way binding of data can be achieved through instructions (
directive
).