Propaganda Oculta
miércoles, junio 01, 2011
XML initialization in ActionScript
The difference between these statements:
var xml:XML = new XML('<root>' + o.data + '</root>');
var xml:XML =
<root>{o.data}</root>;
is that the first forces the XML constructor to parse every part of the String, looking for XML code. The second statement treats the {var} as a simple data value, so potential XML code inside it will be escaped (that is, something like <tag> will become &lt;tag&gt;).

In short, if o.data should be considered as a complex XML value, use the XML constructor. Otherwise, you can use the fancy shortcut.

Etiquetas: ,

 




<< Home
Personal sounding board and public memory.

Nombre: Alejandro Moreno
Ubicación: Edmonton, Alberta, Canada

CodeWeavers

enero 2005 / febrero 2005 / marzo 2005 / noviembre 2005 / diciembre 2005 / febrero 2006 / marzo 2006 / abril 2006 / julio 2007 / agosto 2007 / noviembre 2007 / septiembre 2010 / octubre 2010 / noviembre 2010 / enero 2011 / junio 2011 / julio 2011 / diciembre 2011 / marzo 2012 / junio 2012 / agosto 2012 / septiembre 2012 /


Powered by Blogger