我是Coffeescript的新手,我遇到了解决问题的问题。我有一个当前存储在变量中的JSON对象。如何遍历JSON对象中的键以显示与其关联的键名和值?
if client
result = JSON.parse client
$.each result, (k, v) ->
alert k + " is " + v
任何帮助都将不胜感激。
答案 0 :(得分:48)
for key, value of result
console.log "#{key} and #{value}"
中的更多内容
答案 1 :(得分:1)
result = JSON.parse client
for c in result
console.log(c.key +"-"+ c.value)
这是工作!