当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript fetch-jsonp.default方法代码示例

本文整理汇总了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))
}
开发者ID:harrygr,项目名称:op-website,代码行数:27,代码来源:instagram.ts

示例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')
}
开发者ID:doxiaodong,项目名称:darlin-react,代码行数:10,代码来源:jsonp.ts

示例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 });
     });
 });
开发者ID:pasta04,项目名称:db,代码行数:14,代码来源:common.ts

示例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);
开发者ID:AbraaoAlves,项目名称:DefinitelyTyped,代码行数:31,代码来源:fetch-jsonp-tests.ts


注:本文中的fetch-jsonp.default方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。