9

これは、foursquare から取得した JSON の一部です。

JSON

tips: {
    count: 2,
    groups: [
    {
        type: "others",
        name: "Tips from others",
        count: 2,
        items: [
        {
            id: "4e53cf1e7d8b8e9188e20f00",
            createdAt: 1314115358,
            text: "najjači fitness centar u gradu",
            canonicalUrl: "https://foursquare.com/item/4e53cf1e7d8b8e9188e20f00",
            likes: {
                count: 2,
                groups: [
                {
                    type: "others",
                    count: 2,
                    items: []
                }],
                summary: "2 likes"
            },
            like: false,
            logView: true,
            todo: {
                count: 0
            },
            user: {
                id: "12855147",
                firstName: "Damir",
                lastName: "P.",
                gender: "male",
                photo: {
                    prefix: "https://irs1.4sqi.net/img/user/",
                    suffix: "/AYJWDN42LMGGD2QE.jpg"
                }
            }
        },
        {
            id: "4e549e39152098912f227203",
            createdAt: 1314168377,
            text: "ajd da vidimo hocu li znati ponoviti",
            canonicalUrl: "https://foursquare.com/item/4e549e39152098912f227203",
            likes: {
                count: 0,
                groups: []
            },
            like: false,
            logView: true,
            todo: {
                count: 0
            },
            user: {
                id: "12855147",
                firstName: "Damir",
                lastName: "P.",
                gender: "male",
                photo: {
                    prefix: "https://irs1.4sqi.net/img/user/",
                    suffix: "/AYJWDN42LMGGD2QE.jpg"
                }
            }
        }]
    }]
}

最後のヒントテキスト、それを書いたユーザー、および彼が書いた/投稿した日付を取得する必要があります。

ユーザー: Damir P.

日付: 1314115358

テキスト: najjači fitness centar u gradu

私はJQueryで試してみましたが、これは配列以外の値を取得するために機能します:

$.getJSON(url, function(data){
    var text= data.response.venue.tips.groups.items.text;
    alert(text);
});

しかし、配列では機能しません。

結果: Uncaught TypeError: 未定義のプロパティ 'text' を読み取ることができません。

また、$.eachで試しましたが、効果はありませんでした。

$.getJSON(url, function(data){
    $.each(data.response.venue.tips.groups.items.text, function (index, value) {
        console.log(value);
    });
});

私は何を間違っていますか?

4

4 に答える 4

10

グループとアイテムの両方を繰り返す必要があります。$.each()は最初のパラメーターとしてコレクションを取り、文字列を指そdata.response.venue.tips.groups.items.text うとします。groupsとは両方ともitems配列です。

詳細バージョン:

$.getJSON(url, function (data) {

    // Iterate the groups first.
    $.each(data.response.venue.tips.groups, function (index, value) {

        // Get the items
        var items = this.items; // Here 'this' points to a 'group' in 'groups'

        // Iterate through items.
        $.each(items, function () {
            console.log(this.text); // Here 'this' points to an 'item' in 'items'
        });
    });
});

またはもっと簡単に:

$.getJSON(url, function (data) {
    $.each(data.response.venue.tips.groups, function (index, value) {
        $.each(this.items, function () {
            console.log(this.text);
        });
    });
});

指定した JSON では、最後のものは次のようになります。

$.getJSON(url, function (data) {
    // Get the 'items' from the first group.
    var items = data.response.venue.tips.groups[0].items;

    // Find the last index and the last item.
    var lastIndex = items.length - 1;
    var lastItem = items[lastIndex];

    console.log("User: " + lastItem.user.firstName + " " + lastItem.user.lastName);
    console.log("Date: " + lastItem.createdAt);
    console.log("Text: " + lastItem.text);
});

これにより、次のことが得られます。

ユーザー: Damir P.
日付: 1314168377
テキスト: ajd da vidimo hocu li znati ponoviti

于 2013-03-05T09:10:37.583 に答える
6

アイテムをループしていません。代わりにこれを試してください:

$.getJSON(url, function(data){
    $.each(data.response.venue.tips.groups.items, function (index, value) {
        console.log(this.text);
    });
});
于 2013-03-05T08:54:19.787 に答える
0

次のようなものが必要だと思います:

var text= data.response.venue.tips.groups[0].items[1].text;
于 2013-03-05T08:56:03.813 に答える