1.0.1 • Published 7 years ago

jsonp-pipe v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

jsonp-pipe

an implement of jsonp.

usage

npm install jsonp-pipe
<script type="text/javascript" src="jsonp-pipe/index.js"></script>

or

import jsonpPipe from 'jsonp-pipe'

example

jsonpPipe({
    url:url,
    callback:"callback",//可选
    data:{}, //可选
    success:function(resp){
    },
    fail:function(err){
    },
    time:time,//可选
    cache:true//可选
})