我有两个函数,我试图通过调用函数2并从函数1传递数据来将数据从一个函数传递给另一个函数。 调用第二个函数时,我总是变得不确定。
拳头函数进行api调用
import { get } from '../helpers/api'
export function getAllPosts() {
get('/fetch-posts')
.then((res) => {
if (res.data.success) {
console.log(res)
getAllPostsData(res.data.posts)
}
})
}
调用此函数时,它返回未定义的
。export function getAllPostsData(data) {
return data
}