我正在尝试使用node-fetch进行GET请求。我正在使用dotenv来获取url,但通过提取操作检索到TypeError: Only absolute URLs are supported
,URL_ENV
变量并不是未定义的
require('dotenv').config();
let url = process.env.URL_ENV;
fetch(url ,{method: 'GET'}).then(response => {
return response.json()
})
如果我使用.env文件中的URL_ENV
的内容更改url变量,则可以使用
let url = "http://192.168.1.140:8080"
fetch(url,{method: 'GET'}).then(response => {
return response.json()
})