我试图通过以下承诺中的以下代码获取要在浏览器中呈现的页面,因为我只想在实现承诺时呈现它,但是它不断出错,并说没有渲染功能。如何返回以下标签。
app.auth().currentUser.getIdToken(true).then(function(idToken) {
accessToken = idToken;
console.log(accessToken);
config = {
headers: {'Authorization': accessToken}
};
axios.get('http://localhost:4001/api/v1/page', config)
.then(function (response) {
return (
<h1> test </h1>
);
})
.catch(function (error) {
console.log(error);
});
});