js jsonフォーマットデータの取得方法
プロジェクトではajaxでリクエストを送信してjson形式の応答データを取得しましたが、直接属性を取るのはだめです.応答データを変換して、別のブログから解決方法を見つける必要があります.
jsonデータはdata={「hisAmount」:213456.78、「hisCount」:213、「isSuccess」:0、「ylAmount」:214546.68、「ylCount」:666}
jsはデータをjsonのコードvar res=eval(’(’+data+’)’)に変換する.
原文住所:https://blog.csdn.net/qq_44543508/article/details/92118630
jsonデータはdata={「hisAmount」:213456.78、「hisCount」:213、「isSuccess」:0、「ylAmount」:214546.68、「ylCount」:666}
jsはデータをjsonのコードvar res=eval(’(’+data+’)’)に変換する.
success : function(data) {
var res = eval('(' + data+ ')');
alert(' :' + res.isSuccess);
alert(' :' + res.hisAmount);
}
原文住所:https://blog.csdn.net/qq_44543508/article/details/92118630