LoginSignup
0
0

More than 1 year has passed since last update.

kintoneの添付ファイルフィールドから画像をURLとして取得

Posted at

# fetchで書いて関数化してみた

async function getImageURL(fileKey){
    const url = 'https://ドメイン.cybozu.com/k/v1/file.json?fileKey=' + fileKey
    const header = new Headers({'X-Requested-with':'XMLHttpRequest'})
    const init = {method: 'GET', headers: header, mode: 'cors', cache: 'default}
    const res = await fetch(url, init).catch(err => console.log(err))
    const blob = await res.blob().catch(err => console.log(err))
    const imgURL = (window.URL || window.webkitURL).createObjectURL(blob)
    return imgURL
}

エラーハンドリングは適当

参考
公式にあるXMLHttpRequestでのやり方

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0