admin管理员组文章数量:1344946
I'm trying to display the data from Firestore order by timestamp descending order, I follow the documentation but it seems that I did something wrong.
This is my try:
const outputSnapShot = {};
this.subscribe = firebase
.firestore()
.collection('orders')
.where('restaurant_code', '==', this.state.restaurantCode)
.orderBy('timestamp', 'desc')
.onSnapshot((doc) => {
doc.docs.map(function(documentSnapshot) {
return (outputSnapShot[documentSnapshot.id] = documentSnapshot.data());
});
if (this._isMounted) {
this.setState({ dataSource: Object.entries(outputSnapShot) });
}
});
the result from previous code is the data order by id ASC , Also I finish the INDEXING from Firebase console like so:
I'm trying to display the data from Firestore order by timestamp descending order, I follow the documentation but it seems that I did something wrong.
This is my try:
const outputSnapShot = {};
this.subscribe = firebase
.firestore()
.collection('orders')
.where('restaurant_code', '==', this.state.restaurantCode)
.orderBy('timestamp', 'desc')
.onSnapshot((doc) => {
doc.docs.map(function(documentSnapshot) {
return (outputSnapShot[documentSnapshot.id] = documentSnapshot.data());
});
if (this._isMounted) {
this.setState({ dataSource: Object.entries(outputSnapShot) });
}
});
the result from previous code is the data order by id ASC , Also I finish the INDEXING from Firebase console like so:
Share Improve this question edited Feb 2 at 8:52 Dan Dascalescu 152k65 gold badges333 silver badges420 bronze badges asked Jun 19, 2020 at 16:23 zippaxzippax 3243 gold badges5 silver badges13 bronze badges 2- Could you edit the question with the source data and specific results of the query that show they are in an order that you didn't expect? We should be able to duplicate the issue using what you show in the question. – Doug Stevenson Commented Jun 19, 2020 at 16:26
- Thanks for reply, the data and the result showing all data as I expected but it ordered by id number – zippax Commented Jun 19, 2020 at 16:33
2 Answers
Reset to default 8With a help by my friend, we came with this solution and made the code work as we expected:
Going to share this:
this.subscribe = firebase
.firestore()
.collection('orders')
.where('restaurant_code', '==', this.state.restaurantCode)
.orderBy('timestamp', 'desc')
.onSnapshot((docSnapshot) => {
const dataSource = [];
docSnapshot.forEach((doc) => {
dataSource.push(doc.data());
});
if (this._isMounted) {
this.setState({ dataSource });
}
});
I have faced the same problem, in my case the following way worked for me
firebase.initializeApp(firebaseConfig);
var db = firebase.firestore();
var docRef = db.collection('Users').doc('001').collection('Data').orderBy("Date", "desc")
...
本文标签: javascriptFirestore orderBy Timestamp DESCStack Overflow
版权声明:本文标题:javascript - Firestore orderBy Timestamp DESC - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743787709a2538989.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论