【发布时间】:2021-05-16 21:19:27
【问题描述】:
我一直在尝试解决这个问题,但它给了我这个:ReferenceError: json is not defined
这是我的代码:
const fetch = require('node-fetch');
function makeAFile(text){
fetch("http://bin.shortbin.eu:8080/documents", {
method: "post",
body: 'hey wassup'
})
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.log(err))
return json
}
console.log(makeAFile('nope'))
【问题讨论】:
标签: node.js fetch fetch-api node-fetch