本文主要是介绍A JSONArray text must start with at 1,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
A JSONArray text must start with at 1 [character 2 line 1]
起因:String数组转 JSON 后端调用出错
JSONUtil.toList(xx.getTags(), String.class)
数据库对象entity转包装类 方法 ,其中数据库字段tags是String类型,在包装类中想转换为 JSON
public static PostVO objToVo(Post post) {if (post == null) {return null;}PostVO postVO = new PostVO();BeanUtils.copyProperties(post, postVO);postVO.setTagList(JSONUtil.toList(post.getTags(), String.class));return postVO;}
原因:数据库存入的字段不对,不应该是 xx ,而是应该是 [XX,XX]
这篇关于A JSONArray text must start with at 1的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!