使用 React-Native Calendars 中的日历,我只想在按下一天时将日期(可能作为 dateString)传递给函数。
这是我的代码:
import React, {Component} from 'react';
import {View, Text, Button, ScrollView} from 'react-native';
import colors from '../config/colors';
import { TextInput } from '../components/TextInput';
import { Calendar } from 'react-native-calendars';
class SetReservation extends Component {
showDayTest(date) {
alert(date);
}
render() {
return (
<View>
<Calendar
onDayPress={(dateString) => this.showDayTest(dateString)}
/>
</View>
);
}
}
export default SetReservation;
现在,我只想让它在按下一天时在这个测试函数中提醒一个 dateString,所以我知道我可以用它来做我想做的事。这是正在发生的事情: