A simple implementation of jsonp, it provides timeout and retry function, when the main request is failed because of timeout, there will be many retries.
And the surprise was, you can store the response data to localStorage with jsonp-retry automatically, and then it can get the data from localStorage without request from network if it detects the store data is available.Of course, you can custom the store check rule.You will learn how to use this function from the below.
Happy to use!😘🤡
If you use webpack or browserify, you can install this package with npm or yarn
npm install jsonp-retry --save
or
yarn add jsonp-retry
Then require and use it
import jsonp from 'jsonp-retry'
jsonp('//example.com/xxx', {
timeout: 3000
}, function (err, data) {
if (err) {
throw err
}
// Todo with data
})
or use in Promise way
import jsonp from 'jsonp-retry'
jsonp('//example.com/xxx', {
timeout: 3000
}).then(data => {
// Todo with data
}).catch(err => {
throw err
})
jsonp-retry provides a flexible way of using it, usually you can pass an callback to process the request result, and more elegantly, if your environment support Promise, you can use jsonp-retry in Promise way.
Usually it accept 3 arguments, url
、opts
、cb
, of course cb
is not required.It will return an instance of Promise if your environment support.
url
(String
): the url to fetch dataopts
(Object
): optional, config the jsonp methodjsonp
(String
): appoint the jsonp request url key (defaults tocallback
)name
(String
): appoint the jsonp callback function (defaults to a string with prefix '__jsonp' and current time stamp like__jsonp1504108585883
)params
(String
orObject
): appoint the jsonp request url params, it can be a query string likea=1&b=2&c=3
, or it can be an object like{ a: 1, b: 2 }
,it will transform to a query stringcache
(Boolean
): appoint the jsonp request url whether to be cached (defaults tofalse
)timeout
(Number
): how long after a timeout error is emitted (defaults to2000ms
)retryTimes
(Number
): when the request is timeout it can appoint how many times to retry (defaults to2
)backup
(String
orArray
): appoint a backup url or multiple backup urls, if the url param request is failed, it will use backup url(s) to get backup data for correct displaydataCheck
(Function
): a function to check the response data is correct, the function will accept the response data as arguments, if it returns false jsonp-retry would use the backup url(s) to fetch data if there has backup or it will emit an erroruseStore
(Boolean
): appoint to use localStorage to get or set data or not (defaults tofalse
)storeCheckKey
(String
): appoint the key to check in store, it is generally a field of the data which get from localStorage, with it we can get something like version of the datastoreSign
(String
): the new data version, you can compare it with the old version of the data in localStoragestoreCheck
(Function
): check the data from localStorage if correct (storeCheck
has been defined inside, you can pass your own function to cover)charset
(String
): appoint the charset of the script tag (defaultsUTF-8
)
cb
(function
): the request callback, accept 2 arguments,err
tells if there has an error,data
is the response data
In the same way, you can put the first url
argument into opts
, so there will only need to pass only 2 arguments like
opts
(Object
): optional, config the jsonp methodurl
(String
): the url to fetch data- others are same as up here
cb
(function
): the request callback, accept 2 arguments,err
tells if there has an error,data
is the response data
MIT License
Copyright (c) 2017 Li,Weitao
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.