1

我将 AngularJS 与 WordPress Rest API 一起使用。我正在发出一个返回对象的获取请求。要获得特色图像,我必须使用“?embed”参数,它给出了另一个名为 _embedded 的对象。

问题是我想要的 _embedded 内的对象称为 wp:featuredmedia。如果我像这样以角度引用它,则会出现语法错误。

这是我的代码

$http.get(queries[0], {'cache': true}).
    then(function(response) {
        $scope.careers_title = strip(response.data.title.rendered);
        $scope.careers_content = strip(response.data.content.rendered);
        $scope.careers_feature_image = strip(response.data.featured_media);
        console.log(response.data._embedded);
    });

console.log 返回这个

Object {author: Array[1], wp:featuredmedia: Array[1], wp:term: Array[2]}author: Array[1]wp:featuredmedia: Array[1]0: Object_links: Objectalt_text: ""author: 1date: "2016-04-25T09:33:52"id: 46link: "http://localhost:8888/rubis/wordpress/energy-efficiency/tp-roundall/"media_details: Objectmedia_type: "image"mime_type: "image/png"slug: "tp-roundall"source_url: "http://localhost:8888/rubis/wordpress/wp-content/uploads/2016/04/tp-roundall.png"title: Objecttype: "attachment"__proto__: Objectlength: 1__proto__: Array[0]wp:term: Array[2]__proto__: Object
4

2 回答 2

7

事实上,你不能写:

response.data._embedded.wp:featuredmedia

这是一个禁止的属性名称。但是,任何字符串都被接受,因此您可以通过以下方式访问它:

response.data._embedded['wp:featuredmedia']
于 2016-04-25T10:23:11.523 回答
0

你好,除了前面的例子,如果你

使用谷歌检查你可以只看 json 响应并复制 jsonson 路径

data._embedded["wp:featuredmedia"]["0"].media_details.sizes.medium

 [enter image description here][1]
于 2017-12-25T23:56:44.030 回答