所以我有这个 JSON
https://bitcoinpayflow.com/orders{"order":{"bitcoin_address":"1NwKSH1DJHhobCeuwxNqdMjK5oVEZBFWbk"}}
不,我想引用 bitcoin_address
所以首先我去掉开头的字符串
var stripped = data.substring(33);
alert(stripped);
var btc = stripped.orders.bitcoin_address;
alert(btc);
我收到第一个警报,但不是第二个。知道为什么吗?