显示JSON响应文本时出现问题: 我有以下回应:
{
"status": false,
"msg": "Achtung: Zeile 2 enthält ungültige Zeichen!",
"csv_data": []
}
现在我想在控制台中记录“ msg”文本以进行测试。 那就是我尝试过的:
[...], success: function (file, response) {
// this response works and logs the above JSON
console.dir(response);
// the following return "undefined"
console.log(response.msg);
这是什么问题?我找不到错... 感谢您的帮助! :)