美文网首页
angular 下写的 jsonp

angular 下写的 jsonp

作者: pello佩 | 来源:发表于2016-12-16 16:42 被阅读205次
    <form>
          <input type='text' id='ipt_hello' />
    </form>
    
    myUrl = "http://localhost:8090/api/test?callback=JSON_CALLBACK";
    $http.jsonp(myUrl).success(  
    function(data){ 
       alert(data);
    });
    

    注意点:
    1.angularJS中使用$http.jsonp函数
    2.指定callback和回调函数名,函数名为JSON_CALLBACK时,会调用success回调函数,JSON_CALLBACK必须全为大写
    3.也可以指定其它回调函数,但必须是定义在window下的全局函数。
    4.url中必须加上callback5.当callback为JSON_CALLBACK时,只会调用success,即使window中有JSON_CALLBACK函数,也不会调用该函数。

    注:本文抄自 http://www.cnblogs.com/xuan-0107/p/4434110.html

    相关文章

      网友评论

          本文标题:angular 下写的 jsonp

          本文链接:https://www.haomeiwen.com/subject/lvgnmttx.html