我收到了一些看起来像这样的 JSON:
{
"result": {
"customer": {
"@username": "peter"
}
}
}
然后我想在页面上显示用户名,这样做:
$("#result").html(data.result.customer.@username);
但是,这不起作用,因为@
它是无效字符。有没有办法在不改变 JSON 的情况下解决这个问题?
我收到了一些看起来像这样的 JSON:
{
"result": {
"customer": {
"@username": "peter"
}
}
}
然后我想在页面上显示用户名,这样做:
$("#result").html(data.result.customer.@username);
但是,这不起作用,因为@
它是无效字符。有没有办法在不改变 JSON 的情况下解决这个问题?