0

私はJson文字列を持っています-

var RetailerData = {};

// The object that the JSON string should represent, can use this as it is if you want.

RetailerData.webSites = [
{
    id: 1,
    text: 'J.Crew',
    image: 'images/retailer-logo/jcrew.png',
    extra: 'www.jcrew.com'
},
{
    id: 2,
    text: 'GAP',
    image: 'images/retailer-logo/gap.png',
    extra: 'www.gap.com'
}];

$.parseJSON jqueryを使用して解析し、各値を取得したいと考えています。使ってみました

var obj = $.parseJSON(RetailerData.webSites);

$.each(obj, function() {
    console.log(this['id']);
});

しかし、試行ごとに継続的なエラーが発生します。誰でもこれを行うための適切な方法を教えてもらえますか。前もって感謝します。

4

2 に答える 2