请问java后台怎样传json格式的数据呢?需要什么格式化之类的吗


java后台的json格式数据是怎样的呢?我直接这样写的,responseStr ="{'msg':'该用户名已经被注册了哦'}";
结果js alert打印出来是 object:XMLHttpRequest

jquery java json

rian姐 9 years, 5 months ago

最好不要自己去拼json字符串而是利用第三方工具包 首先 将数据存入map或者自定义一个对象, Map<String> map = new HashMap<>(); map.put("msg", "该用户名已经被注册了哦") 再用jackson, gson或者fastjson将数据转化成json字符串:String jsonString = new Gson().toJson(value); 然后传到前端,你如果是jquery的ajax请求的话 记得type用json 这样应该就没问题了

lon2046 answered 9 years, 5 months ago

Your Answer