「メッセージ」を印刷しようとしています
JSON:
[{"outcome":false,"message":"This is the message"}]
私は3つのことを試しました、これがそれらの結果です...
console.log(msg)=> [{"outcome":false,"message":"Your account is pending beta activation"}](これでいいです)
var x = $.parseJSON(msg);
console.log(x)オブジェクトをくれます
console.log(x.message)私にくれますundefined
msg.messageそうでない場合、にアクセスする正しい方法は何ですか?