前景提要
HDC调试需求开发(15万预算),能者速来!>>> android那个使用这个它是这样给我传值的。
params.addBodyParameter("userId", "1"); params.addBodyParameter("title", "123"); params.addBodyParameter("content", c);
我是这样接受参数的哪里总是提示网络异常:请问这样有问题吗?
@RequestMapping(value = "add", method = RequestMethod.POST) @ResponseBody public Map<String, Object> addWei(@RequestParam("title") String title, @RequestParam("userId") long userId, @RequestParam("content") String content, @RequestParam("images") String images) {