2015-10-05 42 views

回答

2

更新了fiddle

console.log('name : '+JSON.stringify((findbyId('1247').name[0])).replace(/\"/g,"")); 
console.log('cost : '+JSON.stringify(findbyId('1247').cost[0])); 
+0

可以正常使用,非常感謝。 – Pawan

+0

很高興知道。歡迎...:)! – vijayP

+0

不錯的一個......':)' –

0

.value()在您正在使用的jsonQ庫中返回一個數組。它看起來像你,而不是要使用不同的返回方法,像.firsElm()

var resultObj = {name : name.firstElm(), cost : cost.firstElm(), image : image.firstElm() } ; 

,然後(使用正則表達式從其他答案)

id1247 = findbyId('1247'); 
console.log('name : ' + JSON.stringify(id1247.name).replace(/\"/g,"")); 
console.log('cost : '+id1247.cost)); 
相關問題