扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
页面弹出框dialog不属于上面的页面布局,使用方法为
dialog.context_scope.$emit('change-breadcrumb',newValue);
更多细节请参见AngularJS的学习--$on、$emit和$broadcast的使用 - 疯狂的原始人
3.$.grep angular.forEach
$.grep() 方法是按照某种条件来过滤数组
nums = $.grep(nums, function (num, index) {
// num = 数组元素的当前值 // index = 当前值的下标 return isNaN(num);
});
angular.forEach方法用来循环数组
angular.forEach($scope.templates, function (t) {
if ($scope.pool.template.id == t.id) {
$scope.pool.template= t;
}
})
两者都有循环数组的功能,在angular js 中尽量用后者进行循环
4.使用session
angular.module('cvirt.login', ['ngCookies'])
.controller('loginController', loginController)
.controller('logoutController', logoutController);
在controller中声明session,并设置值即可
$cookieStore.put('token', escape(data.token));
$cookieStore.put('username', $scope.username);
获取session中的值
$cookieStore.get('username')
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流