【发布时间】:2015-06-13 04:41:34
【问题描述】:
json
[
{
"id":"0",
"name" : "BCAA & GLUTAMINE",
"brand" : "NRG FUEL",
"price": "20",
"description": "NRGFUEL 100% BCAA & Glutamine powder has been scientifically formulated to promote full muscle recovery, growth and repair whilst preventing muscle breakdown. Consisting of our instantized BCAA (2:1:1 RATIO) and absolute pure glutamine NRGFUEL’S BCAA and Glutamine powder will keep you in a positive state of growth and recovery. If you train hard, you need to recover hard.",
"img" : "images/products/dietforcewhey.jpg"
},
{
"id":"1",
"name" : "WHEY PLUS RIPPEDCORE",
"brand" : "SCISMX NUTRITION",
"price": "20",
"description": "NRGFUEL 100% BCAA & Glutamine powder has been scientifically formulated to promote full muscle recovery, growth and repair whilst preventing muscle breakdown. Consisting of our instantized BCAA (2:1:1 RATIO) and absolute pure glutamine NRGFUEL’S BCAA and Glutamine powder will keep you in a positive state of growth and recovery. If you train hard, you need to recover hard.",
"img" : "images/products/wheyplusrippedcore.jpg"
}
]
控制器
app.controller('productDetails', ['$scope', '$routeParams', 'productService', function ($scope, $routeParams, productService) {
$scope.products = productService.query();
$scope.product = $scope.products[$routeParams.id];
console.log($scope.product)
}]);
服务
app.factory('productService', ['$resource', function ($resource) {
return $resource('json/products.json');
}]);
当我 console.log $scope.product 我得到“未定义”但 scope.products 工作正常。
有人可以解释一下我做错了什么吗?
【问题讨论】:
标签: angularjs ngresource