Я использую приведенный ниже код, который извлекает данные из базы данных users
. Я хочу упорядочить его по возрастанию age
.
//fetch all data
var starCountRef = firebase.database().ref('users/');
starCountRef.on('value', function(snapshot) {
console.log(snapshot.val());
});
Прикрепленный снимок экрана для справки:
How can I get the minimum age record to be on top?
Edit :: 1
- age is a number in database
I tried order by child with below code but still no expected result.
var starCountRef = firebase.database().ref('users/');
starCountRef.orderByChild("age").on('value', function(snapshot) {
console.log(snapshot.val());
});
result is still the same
введите описание изображения здесь