Hi, I’m trying to fetch and display the names of users using parse… But I can’t get it to work. Here’s what I’ve been doing…
new Parse.Query(users).find().then(function(results){
for(var i=0;i<results.length;i++){
myuser[i] = results[i];
}
}
And in the ux I have…
<StackPanel>
<Each Items="{myuser}">
<Text Value="{name}" />
</Each>
</StackPanel>