return Message.error("system.not.allow", req);
Object { type="error", content="\u64cd\u4f5c\u5931\u8d25"}
5 回复
return Message.error("system.not.allow", req);
content读取本地化中的中文
页面json获取到的对象是
Object { type="error", content="\u64cd\u4f5c\u5931\u8d25"}
@wendal 哦。我是用nutzfw-demo中的Message
public Message(Message.Type type, String content,Object data, HttpServletRequest req) {
this.type = type;
this.content = Mvcs.getMessage(req, content);
this.data=data;
}
添加回复
请先登陆