Coder Social home page Coder Social logo

invalid attribute::model about xmldom HOT 5 CLOSED

Falways avatar Falways commented on July 29, 2024
invalid attribute::model

from xmldom.

Comments (5)

karfau avatar karfau commented on July 29, 2024 1

@Lhasa23 Thanks for pointing it out.
I checked the specs and you are right.

I filed this issue to address in xmldom at some point in the future:
xmldom/xmldom#252

from xmldom.

Lhasa23 avatar Lhasa23 commented on July 29, 2024

Do you fix it?

from xmldom.

Falways avatar Falways commented on July 29, 2024

Do you fix it?
Annotated source code, solved my problem!
update sax.js

ElementAttributes.prototype = {
	setTagName:function(tagName){
		if(!tagNamePattern.test(tagName)){
			throw new Error('invalid tagName:'+tagName)
		}
		this.tagName = tagName
	},
	add:function(qName,value,offset){
		/*if(!tagNamePattern.test(qName)){
			throw new Error('invalid attribute:'+qName)
		}*/
		this[this.length++] = {qName:qName,value:value,offset:offset}
	},
	length:0,
	getLocalName:function(i){return this[i].localName},
	getLocator:function(i){return this[i].locator},
	getQName:function(i){return this[i].qName},
	getURI:function(i){return this[i].uri},
	getValue:function(i){return this[i].value}
//	,getIndex:function(uri, localName)){
//		if(localName){
//			
//		}else{
//			var qName = uri
//		}
//	},
//	getValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},
//	getType:function(uri,localName){}
//	getType:function(i){},
}

from xmldom.

karfau avatar karfau commented on July 29, 2024

Just in case you didn't notice, the repo is now forked and maintained over at https://github.com/xmldom/xmldom

But as far as I know those attributes with a leading colon are not valid XML.
Of course I could be wrong, in which case there is a good chance to get it fixed in xmldom.

from xmldom.

Lhasa23 avatar Lhasa23 commented on July 29, 2024

Just in case you didn't notice, the repo is now forked and maintained over at https://github.com/xmldom/xmldom

But as far as I know those attributes with a leading colon are not valid XML.
Of course I could be wrong, in which case there is a good chance to get it fixed in xmldom.

I use it for parsing Vue HTML-template string. There will be some attributes with leading by colon or '@'. I view your repo and I notice you do the same thing for attribute name.
Anyway I use origin DOMParse API back to parse my Vue string. Maybe you could set different condition for origin HTML/XML string or Vue HTML-template string.
That's my narrow minded opinion.

from xmldom.

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.