var final;
final = $http.get('http://localhost:9000/therapist_data',config)
.success(function(response) {
console.log("I got the data I requested");
var resdata = response;
console.log(resdata);
return resdata;
});
console.log(final);
私は応答データを返す代わりに最終変数に格納しようとしていますが、私は約束オブジェクトを取得しています。
実際のデータを返すにはどうすればよいですか?
独自のカスタムサービスを作成することができます。 –
var final defined –