Coder Social home page Coder Social logo

Comments (4)

VandeurenGlenn avatar VandeurenGlenn commented on July 26, 2024

You're misusing it, what you have now is data binded to the firebase-element 'data' attribute, so whatever value data contains, it is written to firebase...

This is how I usually set my data on firebase.

<polymer-element name="test" attributes="data">
  <template>
    <div>
      <firebase-element id="base" location="..."></firebase-element>
    </div>
    <input value="{{data}}"></input>
  </template>
  <script>
    Polymer({
      data: null,

      dataChanged: function() {
          if(this.data !== null) {
              this.$.base.data = this.data;
          } else {
          // 'data' = null
          }
      }
    })
  </script>
</polymer-element>

from firebase-element.

Quantumplation avatar Quantumplation commented on July 26, 2024

That's what I gathered, but it is different behavior from placing it in a <template is="auto-binding"> (firebase fills in the value right away, rather than committing null back to firebase), which is rather misleading. Should this be documented somewhere?

from firebase-element.

VandeurenGlenn avatar VandeurenGlenn commented on July 26, 2024

@Quantumplation I'm not sure, I'll need to make some time to test this, butt I'm suspecting the same behavior.

from firebase-element.

VandeurenGlenn avatar VandeurenGlenn commented on July 26, 2024

@Quantumplation It does the same for when auto-binding, maybe its version related ?

from firebase-element.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.