获得google firebase中的最高价值

时间:2017-08-08 08:22:14

标签: jquery firebase

如何在google firebase中获得最高的对象值?

这是初始脚本,但我不知道如何获得最高价值并将其合并到我的脚本中。

enter image description here

resultsStore.child("statement"+(i+1)).once('value', function(snapshot){

   var dataObj = snapshot.value();
   var answers = Object.keys(dataObj);
   var count = Object.values(dataObj);

});

HTML结构:

<p><input type="radio" class="scenarioRadio" value="5" name="group" /><label>Strongly agree </label></p><br>
<p><input type="radio" class="scenarioRadio" value="4" name="group" /><label>Somewhat agree </label></p><br>
<p><input type="radio" class="scenarioRadio" value="3" name="group" /><label>Neither agree or disagree</label></p><br>
<p><input type="radio" class="scenarioRadio" value="2" name="group" /><label>Somewhat disagree</label></p><br>
<p><input type="radio" class="scenarioRadio" value="1" name="group" /><label>Strongly disagree </label></p><br>
<p><input type="radio" class="scenarioRadio" value="0" name="group" /><label>Don’t know / Can’t say</label>

1 个答案:

答案 0 :(得分:1)

你可以试试 firebase.database() .ref('results/statement1/DontKnow') .orderByValue() .limitToLast(1)