0

我试图做的是使用从前端发送的字符串作为检索我需要的信息的键。问题部分是让答案,当我使用它时,我收到未定义的。但是,如果我使用“Apple.com”,例如,获取工作,我会收到我想要的信息。

到目前为止,我的代码是:

app.post('/todo', function(req, res){

//here we use JSON.stringify to make the object a string
let answer = JSON.stringify(req.body.name);
console.log(answer);

 //here is where we make the api call to get info on the stock
fetch('https://api.fullcontact.com/v3/company.enrich',{
    method: 'POST',
    headers: {
        "Authorization": "Bearer JTm3BBNMqo7xu9PHoG35x8NeohUNfuXl"
    },
    body: JSON.stringify({
        "domain": answer
    })
}).then(function(res) {
    return res.json();
}).then(function(json){
    console.log(json.name);
});

html代码是这样的:

<form action="/todo" method="POST">
    <input type="text" name="name" class="search" placeholder="todo">
    <button type="submit" id="searchButton">submit</button>
</form>
4

0 回答 0