如何使用flex-htmlfilter?

发布于 2024-10-15 11:48:25 字数 188 浏览 1 评论 0原文

我似乎找不到任何有关 flex-htmlfilter 使用的文档? 有人可以给我一些它的示例用法吗?例如,如何使用外部页面的 HTML 代码?例如,我想从外部 php 文件中提取 flex-htmlfilter 的内容。

I can't seem to find any sort of documentation about usage of flex-htmlfilter?
Can anyone be kind enough to give me a few sample usage of it? Like, how do I use HTML codes from external pages? E.g. I want to pull the content of the flex-htmlfilter from an external php file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白况 2024-10-22 11:48:25

我不确定您现在是否找到了答案,但下面的代码对我有用:

import com.htmlFilter.htmlFilter;
private var theHtmlFilter:htmlFilter = new htmlFilter();      

[Bindable]
private var theText:String = theHtmlFilter.filterContent("<p>nothing
important</p><ol><li>item</li><li>item</li><li>item</li></ol>");

确保您的 libs 文件夹/构建路径中有 flex-htmlfilter.swc,然后导入自定义 htmlText 组件并设置text 属性设置为字符串“theText”。您可以从 php 应用程序中提取兼容的 html 代码,并使用此技术对其进行过滤。

xmlns:custom="com.htmlFilter.*"

<custom:htmlText id="customText"
    bottom="0"
    verticalScrollPolicy="off"
    text="{theText}"
    cssFile="styles.css"
    width="100%"/>

I'm not sure if you've found an answer by now, but the code below worked for me:

import com.htmlFilter.htmlFilter;
private var theHtmlFilter:htmlFilter = new htmlFilter();      

[Bindable]
private var theText:String = theHtmlFilter.filterContent("<p>nothing
important</p><ol><li>item</li><li>item</li><li>item</li></ol>");

Make sure you have the flex-htmlfilter.swc in your libs folder/build path, and then import the custom htmlText component and set the text property to the string "theText." You could pull the compatible html code from your php app and filter it using this technique.

xmlns:custom="com.htmlFilter.*"

<custom:htmlText id="customText"
    bottom="0"
    verticalScrollPolicy="off"
    text="{theText}"
    cssFile="styles.css"
    width="100%"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文