本文整理汇总了TypeScript中fetch-jsonp.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript fetch-jsonp.default方法的具体用法?TypeScript fetch-jsonp.default怎么用?TypeScript fetch-jsonp.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fetch-jsonp
的用法示例。
在下文中一共展示了fetch-jsonp.default方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: jsonp
export const getInstagramPhotos = (userId: string, accessToken: string): Promise<Response> => {
const params = qs.stringify({
access_token: accessToken,
count: 10,
})
const url = `https://api.instagram.com/v1/users/${userId}/media/recent/?${params}`
const key = `grams_${userId}_${md5(params)}`
const result = cache.get(key)
if (cache.get(key)) {
return Promise.resolve(Ok(result))
}
return jsonp(url)
.then(response => response.json())
.then((response: Instagram.Response) => {
if (response.meta.code === 400) {
return Err({
message: response.meta.error_message,
info: `URL: ${url}`,
})
}
cache.set(key, response.data, 22)
return Ok(response.data)
})
.catch(err => Err(err))
}
示例2: jsonp
export async function jsonp(url: string, jsonpCallback = 'callback') {
const res = await fetchJsonp(url, { jsonpCallback })
if (res.ok) {
const body = await res.json()
if (body.code === 0) {
return body
}
}
console.error('jsonp error')
}
示例3: Promise
return new Promise((resolve, reject) => {
fetchJsonp(`https://script.google.com/macros/s/AKfycbz2aZfc8mktKaabkLBtt58arxmKYmyLR6Kq8xJONZxAuA9BiEyC/exec?url=${url}&api=${api}&free=${free}`, {
jsonpCallback: 'callback'
})
.then((response: any) => {
return response.json();
})
.then((json: any) => {
resolve(json.htmlStr);
})
.catch((error: any) => {
reject({ error });
});
});
示例4:
import * as fetchJsonp from 'fetch-jsonp';
/* Taken from https://github.com/camsong/fetch-jsonp/blob/v1.0.2/README.md */
fetchJsonp('/users.jsonp')
.then(response => response.json())
.then(json => {
console.log('parsed json', json);
}).catch(ex => {
console.log('parsing failed', ex);
});
fetchJsonp('/users.jsonp', {
jsonpCallback: 'custom_callback'
})
.then(response => response.json())
.then(json => {
console.log('parsed json', json);
}).catch(ex => {
console.log('parsing failed', ex);
});
fetchJsonp('/users.jsonp', {
timeout: 3000,
jsonpCallback: 'custom_callback'
})
.then(response => response.json())
.then(json => {
console.log('parsed json', json);
}).catch(ex => {
console.log('parsing failed', ex);