摘要:
AngularJs中对cookies的操作进行了单独的封装,首先需要先引入angular-cookies.js文件; 然后依赖注入到项目中 ng-Cookies有两个cookies相关的服务:$cookies和$cookieStore;在控制器运用时需要注入到控制器中 设置cookies用put() 阅读全文
摘要:
ui-router提供了一个transition转换对象,transition.to()代表已激活的状态,transition.from()代表过去处于激活的状态; 使用transition.params('to')代表已激活状态的路由参数详情; 使用transition.params('from' 阅读全文
摘要:
$state.go("index.task.selection.log", {pageNo: "1"}, {reload: true}) //reload:true 跳转页面后强制刷新代码 阅读全文
摘要:
.run(["$transitions",function ($transitions, $state) { $transitions.onSuccess({}, function (transition) { var currentRoute = transition.to().name; if (currentRoute.indexOf("from")... 阅读全文
摘要:
ng-keyup="$ctrl.enterKeySearch($event)" self.enterKeySearch = function (e) { var keycode = window.event ? e.keyCode : e.which; if (keycode == 13) { ... 阅读全文
摘要:
indexOf(): http://www.w3school.com.cn/jsref/jsref_indexOf.asp splice(): http://www.w3school.com.cn/jsref/jsref_splice.asp 阅读全文
摘要:
向链接或按钮添加 data-toggle="dropdown" 来切换下拉菜单 阅读全文
摘要:
//首先需要依赖注入 angular.modal('myApp').component('', { controller:['$interval', '$timeout', function ($interval, $timeout) { var timer = $interval(function () { va... 阅读全文
摘要:
new Date()获取系统当前时间: var currentTime= new Date().getYear();//获取当前年份(2位) var currentTime= new Date().getFullYear();//获取当前完整年分(4位) var currentTime= new Date().getMonth();//获取当前月份(0~11,0代表1月) var current... 阅读全文
摘要:
例如: var data=“{“value”:0,“value”:1,“value”:2,“value”:3}”//对象字符串; var data=angular.fromJson(data) //用angular.fromJson将变量data转换为对象; 转换之后的结果为 var data={“value”:0,“value”:1,“value”:2,“value”:3} 阅读全文