Angular.js跨controller实现参数传递的两种方法
程序员文章站
2022-03-21 08:04:14
前言
由于controllers之间不共享scope,如果希望在controllers之间传递参数,可能需要通过其他的方式实现,以下是当前我用到的两种在controlle...
前言
由于controllers之间不共享scope,如果希望在controllers之间传递参数,可能需要通过其他的方式实现,以下是当前我用到的两种在controllers之间传递参数的方法。
注:参考文章sharing data between angular controllers
一、service
可以写一个包含get/set的service,取参数/赋参数
.factory('paramservice',function(){ return { result:[], getresult:function(){ return this.result; }, setresult:function(res){ this.result = res; } }; })
然后可以在controllerone中赋值,在controllertwo中取值
// 赋值 .controller('one',function(paramservice){ paramservice.setresult('one'); }) // 取值 .controller('two',function(paramservice){ var param = paramservice.getresult(); })
二、$stateparams
第二种方法用于路由间传递参数,用途也比较广泛,使用场景比较多
// 传参 .state('one',{ url:'one', controller:'one', template:'one.html', params:{ name:'john' } }) // 取参 .controller('one',function($stateparams){ var name = $stateparams.name; })
others/localstorage
其他方法可以使用一些h5的小技巧,比如使用localstorage来存参/取参,其他的方法,暂时没想到也没用到,有待后续补充.
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用angular能带来一定的帮助,如果有疑问大家可以留言交流。
上一篇: JavaScript防抖与节流详解
推荐阅读
-
java中方法的参数是值传递。基本类型的数据无法实现赋值
-
在java中实现C#语法里的按引用传递参数的方法
-
在java中实现C#语法里的按引用传递参数的方法
-
spring根据controller中接收请求参数不同走不同service的实现方法
-
Android Activity中使用Intent实现页面跳转与参数传递的方法
-
Android Activity中使用Intent实现页面跳转与参数传递的方法
-
spring根据controller中接收请求参数不同走不同service的实现方法
-
Androd自定义对话框Dialog视图及参数传递的实现方法
-
Androd自定义对话框Dialog视图及参数传递的实现方法
-
C# 运用params修饰符来实现变长参数传递的方法