リダイレクトURLからURLに追加されたデータを取得する必要があります。以下は私のサービスです。どうすれば入手できますか?anglejsでURLデータを取得する
paymentResponse.redirectPayment = function() {
//return $http.get(urlBase);
return $http({
method: 'POST',
url: urlBase + redirectAPI,
headers:{
'api_key': apiKey
},
data: {
"type":"redirect",
"_id":"id",
"currency":"EUR",
"amount":100,
"description": "This is a test",
"result_options": {
"notification_url": null,
"redirect_url": $location.protocol() + '://'+ $location.host() +':'+ $location.port() +'#/sucessresponse',
"cancel_url": $location.protocol() + '://'+ $location.host() +':'+ $location.port() +'#/scan',
"close_window": true
}
}
});
};
だから、今、cancleに、それは戻って私のサードパーティのAPIからリダイレクトする - と言う - "http://localhost:9000/#/scan?section_id=test_id"。
ここで、角型アプリで「section_id = test_id」を取得するにはどうすればよいですか?
ためangular docsは、[この]に詳細な回答のために見てみてください(http://stackoverflow.com/questions/16964444/getting-valuesを参照してくださいあなたの
を以下のJSオブジェクトを提供します-from-query-string-in-url-using-angularjs-location) – 92sharmasaurabh
これをチェックしてください[URLからのクエリ文字列パラメータの取得方法](http://stackoverflow.com/questions/16964444/getting -values-from-query-from-url-using-angularjs-location) – 92sharmasaurabh