为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

你可以看一下talk.js文件中,输入指令放在请求的“content”属性中的,而回复信息是在服务端直接通过Response的PrintWriter对象 直接输出回浏览器的

talk.js文件中:

$.ajax({

url : $("#basePath").val() + "talk/autoReplyMessage",

type : "POST",

dataType : "text",

timeout : 10000,

success : function (data) {

appendDialog("talk_recordboxme","My账号",content);

appendDialog("talk_recordbox","小机",data);

$("#content").val("");

render();

},

data : {"content":content}


我的Controller文件中:

@RequestMapping(value="/autoReplyMessage")

public ModelAndView getMessagesByCommand(@RequestParam("content") String command,

HttpServletResponse response) {

response.setContentType("text/html;charset=utf-8");

PrintWriter out = null;

try {

out = response.getWriter();

String reply = messageService.getMessagesByCommand(command);

out.print(reply);

out.flush();

out.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return null;

}



希望能帮到你。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

一点不懂得问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信