Flask バックエンドから Angular アプリへの JSON 応答を取得したいのですが、エラーの場所が見つかりませんでした。返される JSON 応答は次のとおりです。
{
"phones": [
{
"age": 0,
"name": "Nexus S",
"snippet": "Fast just got faster with Nexus S."
},
{
"age": 1,
"name": "Motorola XOOM with Wi-Fi",
"snippet": "The Next, Next Generation tablet."
},
{
"age": 2,
"name": "MOTOROLA XOOM",
"snippet": "The Next, Next Generation tablet."
}
]
}
そして、ここにコントローラーがあります:
function Phones($scope, $http){
$http.get('127.0.0.1:5000/phones').success(function(data){
$scope.phns = data.phones;
console.log("I'm called");
});
}
これは、次のように JSON オブジェクトをコントローラーに渡すと機能します。
$scope.phones = [
{"name": "Nexus S",
"snippet": "Fast just got faster with Nexus S.",
"age": 0},
{"name": "Motorola XOOM with Wi-Fi",
"snippet": "The Next, Next Generation tablet.",
"age": 1},
{"name": "MOTOROLA XOOM",
"snippet": "The Next, Next Generation tablet.",
"age": 2}
];
また、data.phones のようなデータを取得しようとしても機能しません。コントローラーが呼び出されると確信していますが、get関数は何らかの形でデータを取得しません。