我正在尝试遍历从 AJAX 调用返回的此节点,但这样做时遇到问题。我正在尝试访问name
位于facet/#/@attributes/name
. 我目前处于该#
级别,但对如何访问该@ attributes
级别感到困惑。
console.log(data.categories); //outputs what you see below.
$(data.categories.facet).each( function(key, value) {
console.log(key + ' : ' + value.attributes); //outputs undefined
});