标签:
@RequestMapping(produces="text/html; charset=UTF-8",value = "/edit.jhtml", method = RequestMethod.POST)
public @ResponseBody
String update(Channel channel, Model model, RedirectAttributes attributes) {
Channel oldChannel = channelService.findById(channel.getId());
oldChannel.setName(channel.getName());
channelService.update(oldChannel);
return "<script>parent.alert(‘修改成功‘);parent.location.reload();</script>";
}
标签:
原文地址:http://www.cnblogs.com/yuxinglab/p/4739582.html