从经过身份验证的路线获取图像

时间:2017-08-02 08:04:09

标签: node.js authentication react-redux jwt fetch-api

我有一个正常工作的图片上传前端/后端代码。现在我希望能够在上传后从服务器获取图像。

问题是图像必须位于经过身份验证的路由后面,用户必须在标头或正文中传递jwt令牌。

当我尝试像这样获取图像时:

fetch(imageURL, {
    method: 'GET',
    headers: {
        'x-access-token': localStorage.getItem('token')
}

我只是得到一个Form对象作为响应:

<img alt="Your pic" src="[object FormData]">

是否有某种方法可以将图像转换为HTML&#39; img&#39;除了粘贴“src”中的网址之外的其他标记属性,因为它会导致401 (Unauthorized)

1 个答案:

答案 0 :(得分:1)

您可以尝试以下代码段:

const myImage = document.querySelector('img');

// I make a wrapper snippet which will resolve to a objectURL
function fetchImage(url, headers) {
    return new Promise((resolve, reject) => {
        fetch(url, headers)
            .then(response => response.blob()) // sending the blob response to the next then
            .then(blob => {
                const objectUrl = URL.createObjectURL(blob);
                resolve(objectUrl);
            }) // resolved the promise with the objectUrl 
            .catch(err => reject(err)); // if there are any errors reject them
    });
}

fetchImage(imageUrl, {
    method: 'GET',
    headers: {
        'x-access-token': localStorage.getItem('token')
    }
})
    .then(objectUrl => myImage.src = objectUrl)
    .catch(err => console.log(err));

您尝试的其他示例可以在以下位置找到: https://davidwalsh.name/convert-image-data-uri-javascript