spring mvc 服務器端輸出一條可執行js

@RequestMapping(value = "/test",produces = "text/html; charset=UTF-8")
@ResponseBody
public String test(){
String url = "";
return "<script>window.location.href = '"+url+"';</script>";
html

 

 

注意點 1:@ResponseBody注意
  2:produces = 「text/html;charset=utf-8」
  3:返回值爲String,即爲執行的js
相關文章
相關標籤/搜索