1. 程式人生 > >angular心得體會(一)

angular心得體會(一)

list center .info app pen ica tca err ipa

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心得體會(一)