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();
Bea服务器托管网nUtils.copyProperties(post, postVO);
postVO.setTagList(JSONUtil.toList(post.getTags(), String.class));
return postVO;
}
原因:数据库存入的字段不对,不应该是 xx ,而是应该是 [XX,XX]
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
1、背景 在日常测试过程中或者研发开发过程中,目前接口暂时没有开发完成,测试人员又要提前介入接口测试中,测试人员不仅仅只是简单的编写测试用例,也可以通过一些mock的方法进行来提前根据接口测试的情况进行模拟返回接口的信息,进行模拟接口各种场景的异常。 mock…