码迷,mamicode.com
首页 > 其他好文 > 详细

angular心得体会(一)

时间:2017-11-22 19:59:30      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:页面传值   格式化   页面   cell   main   审核   win   can   eid   

1、日期格式化
var today = new Date();
$scope.currentDate = $filter(‘date‘)(today, ‘yyyy-MM-dd‘);
console.info( $scope.currentDate);
2、页面传值
$state.go("main.merchantCenterIndex.productCancellationApplication",{"productDetail":null});

3、下载
window.open(ApiPath.api.downloadFile + ‘?fileId=‘ + eachList.fileId);

4、请求后台服务

productCancellationInfoServ.submitCancel($scope.productDto).then(
function(answer){
angular.alert("提交审核成功!");
$state.go("main.merchantCenterIndex.productCancellationApplication",{});
},function(error){
angular.alert("提交失败!");
}
);

angular心得体会(一)

标签:页面传值   格式化   页面   cell   main   审核   win   can   eid   

原文地址:http://www.cnblogs.com/xu-blog/p/7880482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!