Flex s:text htmltext 遗漏/剪切完整的 html 文本
我正在尝试为文本组件实现 htmlText,因为返回的字符串是 html 格式(带有 html 标签等)。如果我输入 text=.... 我会得到全文,但带有标签(我想将其转换为 html)。所以我使用 htmlText=.... 它的格式很好,但从变量中删除了一半的文本。我应该返回的文本有大量的 html 标签,也许它会在某个地方剪切它,因为标签无法转义...我该如何解决这个问题?有什么解决办法吗?
I am trying to implement htmlText for a text component as the returned string is in html format (with the html tags etc). If I put a text=.... i get the full text, but with the tags (which i want converted to html). So i use htmlText=.... and it formats it fine, but cuts half the text from the variable. The text im supposed to get back has tons of html tags, and maybe its cutting it somewhere because of the tag its not able to escape... How do i fix this? Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并非所有标签都在 htmlText 属性中受支持。以下是可以处理的标签列表:
http: //livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html#htmlText
一个示例将使调试更容易:)
Not all tags are supported in the htmlText property. Here's a list of the tags that can be handled :
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html#htmlText
An example though would make debugging easier :)