Apache Wicket 公开内部属性

发布于 2024-10-09 09:53:03 字数 373 浏览 4 评论 0原文

我刚刚尝试了 Apache Wicket“Hello, world”应用程序,我注意到在渲染的 HTML 输出中,Wicket 公开了它的内部属性。

这就是浏览器“查看源代码”中渲染的 HTML 的样子:

<html>
<body>
    <span wicket:id="message" id="message">Hello World!</span>
</body>
</html>

How do I get rode the wicket:id="message" attribute in the render HTML output?

I just tried the Apache Wicket "Hello, world" application and I noticed that in the rendered HTML output, Wicket is exposing it's internal attributes.

This is what the rendered HTML looks like in the 'view source' of the browser:

<html>
<body>
    <span wicket:id="message" id="message">Hello World!</span>
</body>
</html>

How do I get rid of the wicket:id="message" attribute in the rendered HTML output?

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

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

发布评论

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

评论(3

睫毛溺水了 2024-10-16 09:53:03

切换到 部署 模式,例如web.xml

<context-param>
 <param-name>configuration</param-name>
 <param-value>deployment</param-value>
</context-param>

Switch to deployment mode, e.g. in web.xml:

<context-param>
 <param-name>configuration</param-name>
 <param-value>deployment</param-value>
</context-param>
终止放荡 2024-10-16 09:53:03

您可以将下面的代码放在 init 方法中。

Application.get().getMarkupSettings().setStripWicketTags(true)

如果您的应用程序类也有这个代码(如果在新版本中没有删除的话),

You can place below code in the init method if your applciation class

Application.get().getMarkupSettings().setStripWicketTags(true)

There was this one as well if not removed in the newer versions.

总攻大人 2024-10-16 09:53:03

另外:此设置可在运行时配置:

Application.get().getMarkupSettings().setStripWicketTags(boolean)

Also: this setting is configurable in runtime with:

Application.get().getMarkupSettings().setStripWicketTags(boolean)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文