AngularJS实现Model缓存的方式_AngularJS
时间:2021-07-01 10:21:17
帮助过:8人阅读
在AngularJS中如何实现一个Model的缓存呢?
可以通过在Provider中返回一个构造函数,并在构造函数中设计一个缓存字段,在本篇末尾将引出这种做法。
一般来说,Model要赋值给Scope的某个变量。
有的直接把对象赋值给Scope变量;有的在Provider中返回一个对象再赋值给Scope变量;有的在Provider中返回一个构造函数再赋值给Scope变量。本篇来一一体验。
首先自定义一个directive,用来点击按钮改变一个scope变量值。
■ 给Scope变量赋值一个对象
页面中:
以上,
- ● 改变FirstCtrl中input的值,仅仅影响FirstCtrl中的变量user,不影响SecondCtrl中的变量user
- ● 点击FirstCtrl中的按钮,仅仅影响FirstCtrl中的变量user
- ● 改变SecondCtrl中的input的值,仅仅影响SecondCtrl中的变量user,不影响FirstCtrl中的变量user
- ● 点击SecondCtrl中的按钮,仅仅影响SecondCtrl中的变量user
■ 在Provider返回一个对象,赋值给Scope变量
页面中:
以上,
- ● 改变ThirdCtrl中input的值,同时影响ThirdCtrl和FourthCtrl中的变量user
- ● 点击ThirdCtrl中的按钮,同时影响ThirdCtrl和FourthCtrl中的变量user
- ● 改变FourthCtrl中input的值,同时影响ThirdCtrl和FourthCtrl中的变量user
- ● 点击FourthCtrl中的按钮,同时影响ThirdCtrl和FourthCtrl中的变量user
■ 在Provider中返回一个构造函数,赋值给Scope变量
页面中:
以上,
- ● 改变FifthCtrl中input的值,仅仅影响FifthCtrl中的变量user,不影响SixthCtrl中的变量user
- ● 点击FifthCtrl中的按钮,仅仅影响FifthCtrl中的变量user
- ● 改变SixthCtrl中的input的值,仅仅影响SixthCtrl中的变量user,不影响FifthCtrl中的变量user
- ● 点击SixthCtrl中的按钮,仅仅影响SixthCtrl中的变量user
■ 在Provider中返回一个构造函数,带缓存字段,赋值给Scope变量
页面中:
以上,
- ● 改变SeventhCtrl中input的值,同时影响SeventhCtrl和EighthCtrl中的变量user
- ● 点击SeventhCtrl中的按钮,同时影响SeventhCtrl和EighthCtrl中的变量user
- ● 改变EighthCtrl中input的值,同时影响SeventhCtrl和EighthCtrl中的变量user
- ● 点击EighthCtrl中的按钮,同时影响SeventhCtrl和EighthCtrl中的变量user
以上就是本文的全部内容,希望对大家的学习有所帮助。