我正在尝试从多个文件加载数据,而且我很确定我做错了。 这是我的controller.js:
angular.module('QuizQuestions.controllers', [])
.controller('Preguntas', function($scope,$http) {
$http.get('data/preguntas.json').success(function(data) {
$scope.preguntas = data;
});
$http.get('data/tags.json').success(function(data) {
$scope.tags = data;
});
});
preguntas.json:
[
{
"id": 1,
"text": "Is this okay?",
}
]
tags.json:
[
{ text: 'just' },
{ text: 'some' },
{ text: 'cool' },
{ text: 'tags' }
]
当我尝试访问preguntas.json它是空的时,它只加载tags.json,但检查网络响应,我可以看到它加载了firs tags.json,然后是preguntas.json,但只加载数据从第一个。
我错在哪里?