我是React和AXIOS的新手。我正在尝试将API调用中的数据(分配给用户的问题)呈现到我的页面上。在(.then)语句中运行函数是否有任何限制?
这是我的AXIOS请求
axios
.get(
"/api/v1/assigned-questions?userId=61d7d1be-4ada-4c1a-81c0-c6b82f45132e"
)
.then((res) => {
// handle success
const assignedQuestions = res.data[0];
// object with a collection of data
console.log(assignedQuestions);
this.setState({ currentUser: assignedQuestions });
})
.catch((error) => {
// handle error
console.log(error);
});
答案 0 :(得分:0)
.then内部运行功能没有限制。 .then接受一个作为响应处理程序的函数,它可以在其中执行任意数量的语句。