大家好,我需要帮助,使用AngularJS在html中显示产品颜色和图像。获得的数据与$ http服务一起用作JSON数据。 这是模板应该是什么样子的例子。
// Produit Couleurs Controller
specApp.controller("produit_couleurs_imagesController", ["$scope", "$http", function ($scope, $http){
$scope.error_message = function (response){
$scope.produit_couleurs_images_error = "status: "+response.status+" | status text: "+response.statusText;
}
$http.get("php/json/produit_couleurs_images.php").then(
function (response){
if (response.data.produit_couleurs_images){
$scope.produit_couleurs_images = response.data.produit_couleurs_images;
}else{
$scope.error_message(response);
}
},
function (response){
$scope.error_message(response);
}
);
}]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>