我完全理解this.setstate()函数在react中是如何工作的,但是从早上开始,我就在活动中使用wix react native calendar来处理一个bug。onDayPress我正在调用一个函数,该函数将date作为参数接收,并使用this.setState({startDate: day})更新我的状态属性"startDate“,但状态值永远不会改变,仍然是‘’(调试控制台中的空字符串)
以下是我的完整类代码
import React, {Component} from 'react';
import styled from 'styled-components';
import {SafeAreaView} from 'react-native';
let variables = require('../globals/theme');
import FlatBtn from '../components/flatbtn';
import {CalendarList} from 'react-native-calendars';
class DateSelector extends Component {
state = {
startDate: '',
endDate: '',
};
dayPressed = day => {
console.log('Selected Day = ', day);
this.setState({startDate: day}, () => {
console.log(this.state.startDate); // This prints empty string :(
});
};
createDateArray = (startDate, endDate) => {
console.log('My Days', typeof startDate);
var DaysArray = [startDate.dateString];
if (endDate === '') {
this.SetupCalendar(DaysArray);
return;
}
for (let i = 1; i < startDate.day - endDate.day; i++) {
DaysArray.push(
`${startDate.year}+${startDate.month}-${startDate.day + 1}`,
);
}
this.SetupCalendar(DaysArray);
};
SetupCalendar = DaysArray => {
console.log(DaysArray);
};
render() {
return (
<SafeAreaView style={{flex: 1}}>
<MainScreen>
<TopBlock>
<ClearButton>
<FlatBtn
label="Clear"
color={variables.blackColor}
fontstyle="Avenir-Heavy"
/>
</ClearButton>
<CheckIn>
{this.state.startDate ? (
<CheckinTime>{this.state.startDate.dateString}</CheckinTime>
) : (
<CheckinTime>Check In</CheckinTime>
)}
</CheckIn>
<CheckOut>
{this.state.endDate ? (
<CheckOutTime> {this.state.endDate.dateString}</CheckOutTime>
) : (
<CheckOutTime> Check Out</CheckOutTime>
)}
</CheckOut>
</TopBlock>
<CalendarList
// Callback which gets executed when visible months change in scroll view. Default = undefined
onVisibleMonthsChange={months => {
console.log('now these months are visible', months);
}}
// Max amount of months allowed to scroll to the past. Default = 50
pastScrollRange={10}
// Max amount of months allowed to scroll to the future. Default = 50
futureScrollRange={10}
// Enable or disable scrolling of calendar list
scrollEnabled={true}
// Enable or disable vertical scroll indicator. Default = false
showScrollIndicator={false}
// Collection of dates that have to be colored in a special way. Default = {}
// markedDates={{
// '2019-12-10': {
// startingDay: true,
// color: variables.accentColor,
// textColor: 'white',
// },
// '2019-12-11': {
// selected: true,
// color: variables.accentColor,
// textColor: 'white',
// },
// '2019-12-12': {
// selected: true,
// endingDay: true,
// color: variables.accentColor,
// textColor: 'white',
// },
// }}
// Date marking style [simple/period/multi-dot/custom]. Default = 'simple'
markingType={'period'}
onDayPress={day => {
this.dayPressed(day);
}}
/>
</MainScreen>
</SafeAreaView>
);
}
}
const ClearButton = styled.View`
display: flex;
height: 20px;
flex-direction: row;
padding-left: 25px;
`;
const CheckinTime = styled.Text`
font-family: 'Avenir-Light';
font-size: 18px;
color: ${variables.blackColor};
`;
const CheckOutTime = styled.Text`
font-family: 'Avenir-Light';
font-size: 18px;
color: ${variables.blackColor};
`;
const MainScreen = styled.View`
display: flex;
flex: 1;
`;
const Text = styled.Text``;
const CheckIn = styled.View`
display: flex;
width: 50%;
height: 100%;
justify-content: center;
`;
const CheckOut = styled.View`
display: flex;
width: 50%;
height: 100%;
justify-content: center;
`;
const TopBlock = styled.View`
display: flex;
width: 100%;
height: 15%;
flex-direction: row;
border-bottom-width: 1px;
border-color: ${variables.borderColor};
`;
export default DateSelector;我发现的一件事是,当我再次选择date时,状态变量显示的是旧状态而不是新状态。
发布于 2019-12-19 20:45:44
我认为你可以在你的代码中使用async方法:
async fun()=>{
...
await this.setState(..)
...
}也许这对您有帮助:)
https://stackoverflow.com/questions/59391544
复制相似问题