我不熟悉角度或jquery等。我使用JSF
的时间更长。有路partial submit/process
并且容易写吗?我想知道partial page processing
。
示例 - angularjs
中是否有某些功能?
<div id="div1">
here some input
<button type="button" ng-update="div1" id ="btn1"/>
</div>
<div id="div2">
here some input
<button type="button" ng-update="div2" id ="btn2"/>
</div>
<button type="button" ng-update="div1 div2" id ="btn3"/>
我的期望是
Click `bnt1` -> only `div1` will be process.
Click `bnt2` -> only `div2` will be process.
Click `bnt3` -> Both of `div1` and `div2` will be process.
答案 0 :(得分:3)
Angular不需要这个,它总是刷新整个页面。如果您希望更改div 1中的某些值,只需更新控制器中的变量,屏幕就会自动反映更改。
答案 1 :(得分:0)
Angular旨在解决这个问题。如果您只需要控制页面的一部分,请考虑构建一个指令。那会晚些。现在,请查看介绍angular的文章:
祝你好运!