jsonp跨域,后台json需要包装
2021-07-15 08:07
标签:end ati iter success npc ror tco serial oid java后台: 前台: jsonp跨域,后台json需要包装 标签:end ati iter success npc ror tco serial oid 原文地址:http://www.cnblogs.com/wenxiangxu/p/7073433.htmlpackage cn.xuwx;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class test
*/
public class test extends HttpServlet {
private static final long serialVersionUID = 1L;
public test() {
super();
}
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.setContentType("text/html;charset=UTF-8");
resp.setCharacterEncoding("utf-8");
String result = "{\"name\":\"许文祥\",\"address\":\"武汉\"}";
String jj = "successCallback("+result+")";
PrintWriter out = resp.getWriter();
out.write(jj);
}
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
}
}
$.ajax({
url: ‘http://localhost:8081/Servlet/test‘,
dataType: ‘jsonp‘,
jsonpCallback:"successCallback",
success: function(data){
console.log(JSON.stringify(data));
},
error: function(){
console.log(‘失败‘);
}
})
文章标题:jsonp跨域,后台json需要包装
文章链接:http://soscw.com/index.php/essay/105493.html