Flutter正确的DateTime格式以在时间戳Cloud的何处条件中进行比较

时间:2019-03-13 17:37:27

标签: dart flutter google-cloud-firestore

我尝试使用此方法从Cloud Firestore过滤我的计划:

DateTime _now = DateTime.now();
DateTime _start = DateTime(_now.year, _now.month, _now.day, 0, 0);
DateTime _end = DateTime(_now.year, _now.month, _now.day, 23, 59, 59);


stream: Firestore.instance
           .collection('schedule')
           .where('date', isGreaterThanOrEqualTo: _start) 
           .where('date', isLessThanOrEqualTo: _end) 
           .orderBy('date')
           .snapshots(),

未过滤结果。

Cloud Firestore date format

0 个答案:

没有答案