当前位置: 首页 > 知识库问答 >
问题:

axios“url”参数必须是字符串类型。收到类型未定义错误

颛孙飞鸾
2023-03-14

我正在开发一个electron应用程序,它试图从unsplash API下载一张照片,并将其设置为壁纸。当我调用API时,我得到200 OK状态并获得下载URL,但当我尝试使用axios stream方法下载照片时,我得到以下错误:

类型错误[ERR_INVALID_ARG_TYPE]:url参数必须是字符串类型。接收类型未定义

这是功能代码:

ipcMain.on("getRandomWallpaper", async event => {
  const randomApi = `${apiGateway}/?client_id=${unsplashKey}`;
  const request = await axios({
    method: "get",
    url: randomApi
  });
  if (request.status === 200) {
    const downloadUrl = request.data.links.download;
    const imagePath = "./images";
    const download_image = async (downloadUrl, imagePath) => {
      await axios({
        downloadUrl,
        responseType: "stream"
      }).then(
        response =>
          new Promise((resolve, reject) => {
            response.data
              .pipe(fs.createWriteStream(imagePath))
              .on("finish", () => resolve())
              .on("error", e => reject(e));
          })
      );
    };
    download_image(downloadUrl, imagePath);
  } else {
    const status = request.status;
    console.error(`${status}: \n Something went wrong...`);
  }
});

当我试图在函数中console.logDownloadUrl参数时,它会打印一个值。也是我做的

 console.log(typeoff(downloadUrl))

它打印了绳子。我希望你能帮助我,提前感谢。

共有2个答案

金昂熙
2023-03-14

这两种方法都适用于我:

 url = 'localhost:4000/getsomething'

    axios({
                        method: 'get',
                        url,
                        auth: {
                            username: 'Blue',
                            password: 'PowerRanger'
                       }
           }).then(function(response){//do stuff
               }).catch(err => console.log(err))

但是在不同的情况下,url变量不是命名为url,而是不同的:

    customurl = 'localhost:4000/getsomething'
    axios({
                        method: 'get',
                        url: customurl,
                        auth: {
                            username: 'Blue',
                            password: 'PowerRanger'
                       }
           }).then(function(response){//do stuff
                }).catch(err => console.log(err))
乐正焕
2023-03-14

您正在使用析构:

await axios({
    downloadUrl,
    responseType: "stream"
})

这意味着,您正在使用DownloadUrl作为键,而不是url

await axios({
    downloadUrl: downloadUrl,
    responseType: "stream"
})

您需要将其更改为url

await axios({
    url: downloadUrl,
    responseType: "stream"
})

文档中的axios的适当示例

axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  }
});
 类似资料: