Code Monkey home page Code Monkey logo

Comments (5)

paullryan avatar paullryan commented on June 12, 2024 1

I instrumented the bootstrap handleApp function to print the full stack trace:

Error: Failed to execute 'setAttributeNS' on 'Element': '' is an invalid namespace for attributes.
    at Error (native)
    at OoPropertyObserver.setValue (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/property-observation.js:200:26)
    at InterpolationBinding.setValue (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/binding-language.js:214:35)
    at InterpolationBinding.bind (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/binding-language.js:202:22)
    at View.bind (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/view.js:65:29)
    at ViewFactory.create (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/view-factory.js:173:22)
    at BoundViewFactory.create (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/view-factory.js:128:39)
    at Repeat.processItems (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/repeat.js:105:36)
    at Repeat.bind (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/repeat.js:60:22)
    at BehaviorInstance.bind (http://localhost:9000/jspm_packages/github/aurelia/[email protected]/system/behavior-instance.js:67:39)

Also if I hack the property-observation code to explicitly set the namespace it works, but this is really kludgy and likely to break quickly.

https://github.com/aurelia/binding/blob/master/src/property-observation.js#L153-L159 changed to:

  setValue(newValue) {
    if (this.isSVG) {
      if(this.propertyName.indexOf('xlink:') >= 0){
        this.obj.setAttributeNS("http://www.w3.org/1999/xlink", this.propertyName, newValue);
      } else {
        this.obj.setAttributeNS(null, this.propertyName, newValue);
      }
    } else {
      this.obj[this.propertyName] = newValue;
    }
  }

from binding.

paullryan avatar paullryan commented on June 12, 2024

Something like the following will work for the interpolation case:

function getAttrNamespace(attributes, propertyName){
  let attr = attributes.getNamedItem(propertyName);
  if(attr){
    return attr.namespaceURI;
  }
}

setValue: {
  if(this.propertyName.indexOf(':') > 0){
    let namespaceURI = getAttrNamespace(this.obj.attributes, this.propertyName);
    this.obj.setAttributeNS(namespaceURI, this.propertyName, newValue);
  } else if (this.isSVG) {
    this.obj.setAttributeNS(null, this.propertyName, newValue);
  } else {
    this.obj[this.propertyName] = newValue;
  }
},

But not for the bind case because even if you grab propertyname + ".bind" it won't be bound to the desired namespaceURI yet so you may have to do a global lookup somehow of the the namespaces available to the document.

from binding.

EisenbergEffect avatar EisenbergEffect commented on June 12, 2024

@jdanyow Can you look into this and see if we can do work to improve this, possibly through our element observer abstraction?

from binding.

jdanyow avatar jdanyow commented on June 12, 2024

sure

from binding.

jdanyow avatar jdanyow commented on June 12, 2024

Still researching this. Posted related question here: http://stackoverflow.com/questions/28560100/why-is-getattributenodens-returning-null

from binding.

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.