gpt4 book ai didi

javascript - 访问从工厂返回的对象

转载 作者:可可西里 更新时间:2023-11-01 17:08:34 25 4
gpt4 key购买 nike

所以我有一个从服务器获取对象的工厂:

.factory('Articles', function($http) {

var articles = [];

return {
all: function(){
$http.get("http://jsonp.afeld.me/?url=http://examplesite.com/page.html?format=json").then(function(response){
articles = response.data.items;
console.log(response.data.items);
return articles;
});
},

get: function(articleId) {
for (var i = 0; i < articles.length; i++) {
if (articles[i].id === parseInt(articleId)) {
return articles[i];
}
}
return null;
}
}
});

这是返回一个像这样的数组:

[Object, Object, Object, Object, Object, Object, Object, Object]

每个对象看起来像这样:

0: Object
alias: "title"
attachments: Array[0]
author: Object
category: Object
catid: "67"
created: "2015-04-11 08:06:07"
created_by_alias: ""
events: Object
extra_fields: null
featured: "0"
fulltext: ""
gallery: null
hits: "80"
id: "171"
image: ""
imageLarge: "/url/69bc9c3e85c501b0a6208cc7a55abbf9_L.jpg"
imageMedium: "/url/69bc9c3e85c501b0a6208cc7a55abbf9_M.jpg"
imageSmall: "/url/69bc9c3e85c501b0a6208cc7a55abbf9_S.jpg"
imageWidth: ""
imageXLarge: "/url/69bc9c3e85c501b0a6208cc7a55abbf9_XL.jpg"
imageXSmall: "/url/69bc9c3e85c501b0a6208cc7a55abbf9_XS.jpg"
image_caption: ""
image_credits: ""
introtext: "<p><strong>Mpho Mathoho</strong>lots of text is here....</p>"
language: "*"
link: "/url/title.html"
modified: "2015-06-02 07:44:30"
numOfComments: "0"
numOfvotes: "(0 votes)"
tags: Array[1]
title: "the title"
video: null
video_caption: ""
video_credits: ""
votingPercentage: 0
__proto__: Object

我的 Controller 看起来像这样:

.controller('GautengCtrl', function($scope, $stateParams, Articles) {
$scope.articles = Articles.all();
})

我只想返回一个文章列表并将它们显示在页面上。我的 HTML 看起来像这样:

    <ion-list>
<ion-item ng-class='{in:$first}' class="item-remove-animate item-thumbnail-left item-icon-right wrap" ng-repeat="article in articles" type="item-text-wrap" href="#/app/provinces/gauteng/{{article.id}}">
<img ng-src="http://examplesite.com/{{article.imageLarge}}">
<h2>{{article.title}}</h2>
<p>{{article.created}}</p>
<i class="icon ion-chevron-right icon-accessory"></i>
</ion-item>
</ion-list>

虽然这不起作用,但我真的不明白为什么。

有没有人对此有任何见解可以提供帮助?

最佳答案

我认为你的问题可能与 promise 有关。请记住,当您使用 $http 时,您正在创建 promise ,并且在使用返回数据时应该使用相应的回调。

在您已经在使用 .then 方法的服务中,但您实际上并没有从服务向 Controller 返回任何内容。您应该返回生成的 promise 并使用 .then/.error 方法更新您的 $scope 变量。

.factory('Articles', function ($http) {
var articles = [];
return {
all: function () {
return $http.get("http://jsonp.afeld.me/?url=http://examplesite.com/page.html?format=json").then(function (response) {
articles = response.data.items;
console.log(response.data.items);
return articles;
});
},
get: function (articleId) {
for (var i = 0; i < articles.length; i++) {
if (articles[i].id === parseInt(articleId)) {
return articles[i];
}
}
return null;
}
}
});

在你的 Controller 中

.controller('GautengCtrl', function ($scope, $stateParams, Articles) {
$scope.articles = [];
Articles.all().then(function(data){
$scope.articles = data;
});
})

关于javascript - 访问从工厂返回的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30702965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com