角度部分提交/处理

时间:2015-02-10 04:54:23

标签: jquery angularjs

我不熟悉角度或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.

2 个答案:

答案 0 :(得分:3)

Angular不需要这个,它总是刷新整个页面。如果您希望更改div 1中的某些值,只需更新控制器中的变量,屏幕就会自动反映更改。

答案 1 :(得分:0)

Angular旨在解决这个问题。如果您只需要控制页面的一部分,请考虑构建一个指令。那会晚些。现在,请查看介绍angular的文章:

http://tinyurl.com/m4mvf6z

祝你好运!