user應用WEB層
app.service('userService',function($http){
//讀取串列資料系結到表單中
this.findAll=function(){
return $http.get('../user/findAll.do');
}
秒殺下單
app.service('payService',function($http){
//本地支付
this.createNative=function(){
return $http.get('pay/createNative.do');
}
//查詢支付狀態
this.queryPayStatus=function(out_trade_no){
return $http.get('pay/queryPayStatus.do?out_trade_no='+out_trade_no);
}
});
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/265203.html
標籤:Web 開發
