java – 使用Wicket生成注释掉的内容

栏目: Java · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/3933921/generating-commented-out-content-with-wicket
出于调试原因,并且一时兴起,我想将某些信息包含在Wicket页面的HTML输出中,该输出包含在 HTML

注释中.

输出将是……

<!-- 
<div wicket:id="foo"> 1234 </div>
-->

…其中“1234”是一些有趣的,动态创建的信息.

我试过,但无济于事:

><! -<div wicket:id =“foo”></ div> – > →Wicket抱怨HTML页面中缺少id为“foo”的元素

>封闭在<wicket:remove> →此类部分不能包含带wicket的元素:id

> label.setVisible(false)→Wicket根本不输出标签

> new Label(“foo”,“<! - ”foo“ - >”)→ 逃脱和>

那么,你可以用Wicket(轻松)做到这一点,还是我应该忘掉它?

这个怎么样?

class CommentOutModifier extends AbstractBehavior {
    private static final long serialVersionUID = 1L;

    @Override
    public void beforeRender(Component component) {
        component.getResponse().write("<!--");
    }

    @Override
    public void onRendered(Component component) {
      component.getResponse().write("-->");
    }
}

add(new Label("tohide", "Hi, can you see me?").add(new CommentOutModifier()));

然后,放:

<span wicket:id="tohide"></span>

在您的标记中将产生:

<!--<span>Hi, can you see me?</span>-->

翻译自:https://stackoverflow.com/questions/3933921/generating-commented-out-content-with-wicket


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Hit Refresh

Hit Refresh

Satya Nadella、Greg Shaw / HarperBusiness / 2017-9-26 / USD 20.37

Hit Refresh is about individual change, about the transformation happening inside of Microsoft and the technology that will soon impact all of our lives—the arrival of the most exciting and disruptive......一起来看看 《Hit Refresh》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具