gpt4 book ai didi

javascript - JQuery.jsonParse 不工作

转载 作者:行者123 更新时间:2023-12-02 17:24:43 25 4
gpt4 key购买 nike

我的代码是:

var json = $.parseJSON(data);
CKEDITOR.instances.post_editor.setData(json.content);
$("#postTitle").val(json.title);
$("#tagInput").val(json.tags);

但它不会设置值。当我运行 console.log(json) 时,它会记录:

{"title":"Id ,1","content":"

For testing.</s></u></em></strong></p>\r\n","tags":"tags,hu","date":"May 10, 2014, 7:20 pm","id":"1"}

但是当我运行 console.log(json.title) 时,它会记录:undefined

最佳答案

// replace with your first line. Error is \r\n breaking the data string

data = data.replace(/(\r\n|\n|\r)/gm,"");
var json = $.parseJSON(data); // OR "JSON.parse(data);"

关于javascript - JQuery.jsonParse 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23585503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com