Performing XML Transformations in Flex

前端 未结 2 1376
借酒劲吻你
借酒劲吻你 2021-01-15 01:51

I\'d like to be able to run an xml transformation using an xslt file in my AIR project. What\'s the best way to accomplish this?

2条回答
  •  独厮守ぢ
    2021-01-15 02:51

    XSLT support is typically provided by browsers. The version of Webkit embedded in AIR does not support XSLT. So, you'll have to do this all by yourself. I found this project that lets you play around with XPath queries in AS3. Now, template parsing and node creation you'll have to do by yourself.

提交回复
热议问题