asObject: true is not binding
See original GitHub issueWhen I update data in database my dropdown list doesn’t get updated (downloads only once):
What I try to achieve is .on('value', function(){...})
thing.
I found that in VueFire source: and that:
So it should behave like I thought it would, but even when I delete readCallback
data still behave as once
.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
AsObject not binding as actual object · Issue #11 · vuejs/vuefire ...
When I bind as an object, I will still have to iterate through the object to access my values.
Read more >Einstein Analytics: Binding serialization functions asString() or ...
asObject () Function Passes data through with no serialization. ... use asObject() when you bind not a string value, such as true /...
Read more >Issue serializing checkbox as boolean property and MVC ...
and upon AJAX POST, MVC's databinding correctly sets the model property value to true as expected. However, in certain cases, i need to ......
Read more >Bind Parts of a Query | Analytics Bindings Developer Guide
This example illustrates what the interactions look like for different parts of a query. The chart is bound based on selections for grouping,...
Read more >BooleanExpression (Java SE 9 & JDK 9 ) - Oracle Help Center
Creates a new BooleanExpression that holds true if this and another ObservableBooleanValue are equal. BooleanBinding · not(). Creates a ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well, once you got your data bound, it’s just Vue 🙂 The only difference is that the data may change because of another client changing it but you don’t even have to worry about it because vuefire handles the update for you
Here is the updated fork: https://jsfiddle.net/xgtrjsz9/1/
Now it’s working, but don’t know how to implement it to my dropdown function:
Maybe should I just go with
Vue.component()
and put relevant mustaches in place?