码迷,mamicode.com
首页 > Web开发 > 详细

jquery Jsonp的使用

时间:2014-11-20 18:20:42      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   java   

  <script type="text/javascript">
       $(function(){
            $.ajax({
                url:"test",
                jsonpCallback: "showPrice",
                jsonp: "callback",
                dataType: "jsonp",
                data: {
                   q: "select title,abstract,url from search.news where query=\"cat\"",
                   format: "json"
                 },
                success: function(data) {
                      alert(data.name);
                },
                 error:function(){
                     alert("s");
                 }
            });
            
        });
        
    </script>

test servlet

/**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        String name = request.getParameter("callback");
        request.getParameter("q");
        System.out.println(name);
        response.getWriter().write(name+"({name:\"bai\"})");
    }

在写回的时候格式最好是callback({   })这种格式 ,否则接受时出粗到error,具体原理以后慢慢参详

jquery Jsonp的使用

标签:style   blog   http   io   ar   color   使用   sp   java   

原文地址:http://www.cnblogs.com/Wen-yu-jing/p/4111011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!