具有 e4x XML dataProvider 的 FlexNativeMenu 是否可以具有 <>其属性中的字符?

发布于 2024-11-17 18:56:14 字数 337 浏览 2 评论 0 原文

正如问题所述,每当我尝试使用尖括号作为我的属性之一的值的一部分时,我都会收到 XML parser failure: Untermerated attribute 。例如,所有这些都会导致 XML 错误:

<menuitem label="<em>"/>
<menuitem label="&lt;em&gt;"/>
<menuitem label="&#60;em&#62;"/>

在 Flex 4 中与 FlexNativeMenu 一起使用时,是否有办法在这些菜单项中包含尖括号?

As the question states, I get XML parser failure: Unterminated attribute whenever I try to use the angle brackets as part of a value of one of my attributes. For example all cause XML errors:

<menuitem label="<em>"/>
<menuitem label="<em>"/>
<menuitem label="<em>"/>

Is there a way to include angle brackets in these menu items when using it with a FlexNativeMenu in Flex 4?

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

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

发布评论

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

评论(1

分開簡單 2024-11-24 18:56:14

我会尝试在 ActionScript 中设置标签:

menuItem.label = '<em>';

如果您打算在 MXML 中执行此操作;我会尝试这样的方法,使用 cdata 声明来转义:

<Menuitem>
 <label><![CDATA[<em>]]></label>
</Menuitem>

I'd try setting the label in ActionScript:

menuItem.label = '<em>';

If you're intent on doing this in MXML; I would try an approach like this, using the cdata declaration to escape things:

<Menuitem>
 <label><![CDATA[<em>]]></label>
</Menuitem>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文