开发者

How do I get hyphens in my attribute names in Flex?

Flex has an issue with hyphens in xml. I need to generate an xml object with hyphens in the attribute for a Google Checkout implementation.

I can get away with:

var xml:XML = <item-description/>;

and

var xml:XML = <item-description the-name="foo"/>;

but what I need to do is set the value of an attribute like this:

var timestamp:String = methodToGetMyTimestampString();

var xml:XML = <item-desc/>;
xml@start-date = timestamp;

but I can't do that. Since flex doe开发者_运维技巧sn't like the hyphens, I don't know how to get or set attributes with hyphens in the name.


Have you tried this:

xml.attribute("start-date") = timestamp;

or

xml.@["start-date"] = timestamp;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜