Flex:在Spark TextArea中使用类似htmlText的方法吗?

时间:2012-11-20 05:50:38

标签: flex flex4 flash-builder flex4.5 flexbuilder

我使用php服务将文本从MySql插入TextArea。 好的,mx textarea正在运行,但我如何用spark来管理它??

这是我用mx的例子:

<mx:TextArea htmlText="{links.comment}"/>

这是spark的一个例子:

<s:TextArea>
    <s:textFlow>
        <s:TextFlow>
            <s:a href="http://www.google.com/" target="_blank"><s:span color="0xCECB02" textDecoration="none">Something and Something</s:span></s:a>
        </s:TextFlow>
    </s:textFlow>
</s:TextArea>

这有效,但我如何从MySql中获取相同的“{links.comment}”?

1 个答案:

答案 0 :(得分:1)

如果您将数据作为标记格式获取,可以通过以下方式解决: -

<s:TextArea color="0xCECB02" textDecoration="none" textFlow ="{TextFlowUtil.importFromString(links.comment, WhiteSpaceCollapse.PRESERVE)}"/>