1
以下のデータクーポンはNGモデルです。私はAPIにngモデルを送り、私はresponse.in側に得られた総応答を得ました。サイドからdata.value未定義応答データは定義されていますが、data.valueは定義されていませんか?
を取得し、私はdataresult.offerprice
mainCtrl.controller("MainController",function(,$scope,$rootScope,$q)
$scope.ResultInfo=function(){
var couponres=$resource("http://demo.foodzard.in/api/promocode?code="+$scope.coupon.offer)
return couponres.get(function(data){
console.log(data);
$rootScope.coupon=data;
return data;
});
}
dataresult=$scope.ResultInfo();
console.log(dataresult);
console.log(dataresult.offerprice);
$scope.list={"hascoupan","coupanvalue":dataresult.offerprice ,"coupanamt":dataresult.offerprice,"ordertotal": $scope.Total()};
dataresultようなリストオブジェクト内の応答を使用します。レスポンス
Resource {offerid: "6", offerprice: "30", $promise: Promise, $resolved: true}
$promise: Promise$resolved: trueofferid: "6"offerprice: "30"
__proto__: Object2
dataresult.offerprice:Response
undefined
を
外のデータを取得する方法を教えてください
あなたのご提案ありがとうございます。それは私のプロジェクトのために働いています@ T J – SrinivasAppQube