如何在屏幕中处理多个上下文状态?
const { state } = useContext(profileContext);
const { state,AttendanceInGetByDate } = useContext(AttendanceContax);
答案 0 :(得分:0)
您可以在解构时重命名属性:
select *
from indicatordetails
where indicator.month between 'January'and 'march'
有很多关于使用Javascript进行销毁的文章,最近有一种炒作(one of them),选择其中任何一种。
此外,如果给您带来任何不便,则不必使用带有钩子的解构:
const { state: profileDAta } = useContext(profileContext);
const { state: attendanceData, AttendanceInGetByDate } = useContext(AttendanceContax);