當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript fetch-jsonp類代碼示例

本文整理匯總了TypeScript中fetch-jsonp的典型用法代碼示例。如果您正苦於以下問題:TypeScript fetch-jsonp類的具體用法?TypeScript fetch-jsonp怎麽用?TypeScript fetch-jsonp使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了fetch-jsonp類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

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

示例2: 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

示例3: 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

示例4: 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


注:本文中的fetch-jsonp類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。