在一个 flex 应用程序中,我想在 spark textarea 中显示格式化的推文,但它显示 html 元素(带有标签)“原样”而不是解析它并转换为富 html 文本,我从 flex 官方网站关注这个例子
<s:TextArea width="400" height="100">
<s:content>This is <s:span color="#FF0000">HTML text</s:span>
in an <s:span fontWeight="bold">Spark TextArea control</s:span>.
Use the <s:span textDecoration="underline">content</s:span> property
of the <s:span color="#008800">Spark TextArea control</s:span>
to include basic HTML markup in your text, including
<s:a href="http://www.adobe.com" target="_blank">links</s:a>.
</s:content>
</s:TextArea>
但是像这样传递我的数据
<s:TextArea>
<s:content>{TwitterString.parseTweet(data.text)}</s:content>
</s:TextArea>
一条推文的结果是,
<s:a href='http://t.co/a7bQnmLRGy' target='_blank'>http://t.co/a7bQnmLRGy</s:a> I'll be there
这意味着它没有按预期格式化。
知道如何让<s:content>
动态内容的工作传递给它吗?
请不要回答TextConverter
这将是我最后的手段,我很乐意使用<s:content>
工作