- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经开始学习 Apache Wicket 网络框架,但在完成某项任务时遇到了一些困难。
如果你能从附图中看到,我去了http://www.wicket-library.com/wicket-examples-6.0.x/echo/ ,
尝试这个基本的输入表单功能。
我的问题是:最初我不想在 Label 字段中显示任何内容,但是一旦单击了设置消息按钮,我就想更新 Label 值。我怎么做 ?谢谢
更新:
echo.java 中的代码如下所示。 PropertyModel 附加有更新值的标签。
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.examples.echo;
import org.apache.wicket.examples.WicketExamplePage;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.model.PropertyModel;
/**
* The simplest form application possible. Just prints any user input to a label.
*
* @author Eelco Hillenius
*/
public class Echo extends WicketExamplePage
{
private String message = "[type your message to the world here]";
/**
* Constructor.
*/
public Echo()
{
// This model references the page's message property and is
// shared by the label and form component
PropertyModel<String> messageModel = new PropertyModel<String>(this, "message");
// The label displays the currently set message
add(new Label("msg", messageModel));
// Add a form to change the message. We don't need to do anything
// else with this form as the shared model is automatically updated
// on form submits
Form<?> form = new Form("form");
form.add(new TextField<String>("msgInput", messageModel));
add(form);
}
/**
* @return the message
*/
public String getMessage()
{
return message;
}
/**
* @param message
* the message to set
*/
public void setMessage(String message)
{
this.message = message;
}
}
html 文件看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org">
<head>
<title>Wicket Examples - echo</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<span wicket:id="mainNavigation"/>
<form wicket:id="form">
<input type="text" wicket:id="msgInput" value="" size="50" />
<input type="submit" value="set message" />
</form>
<span wicket:id="msg" id="msg">Message goes here</span>
</body>
</html>
最佳答案
试试这个:
add(new Label("msg", messageModel)) {
@Override public boolean isVisible() {
return !messageModel.getObject().equals(message);
}
};
文本字段需要知道何时应该呈现。请注意,如果要使组件通过 Ajax 可见,则需要在 Label
上设置 setOutputMarkupId(true)
和 setOutputMarkupPlaceholderTag(true)
,例如,submit
组件是一个 AjaxSubmitButton
。
当执行比 String
比较更复杂的任务时,您应该从覆盖的 onConfigure
方法中调用 setVisible
,如评论。 isVisible
在渲染阶段可能会被调用很多次,这样您就可以避免计算。这看起来像下面这样:
add(new Label("msg", messageModel)) {
@Override protected void onConfigure() {
super.onConfigure();
setVisible(!messageModel.getObject().equals(message));
}
};
不过,永远不要忘记调用 super
方法。
为了提高代码的可读性,我个人更喜欢覆盖 isVisible
方法来完成简单的任务,例如您需要的 String
比较。 JIT 编译器通常会处理剩下的事情。
关于java - Apache Wicket 口 : Update value of the Label after the Button has been pressed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21508552/
命令 npm update 有什么区别和包裹npm-check-updates ?使用后者是否完全安全? 执行后好像是npm update并非所有软件包都已更新,因此似乎不完整。许多其他 popula
我有使用 ExpressJS 和 ORM Sequelize 的 API。我正在尝试使用 Sequelize 中的 update() 方法进行更新。默认情况下,it 方法将返回更新的行数。但我希望结果
关于如何更新 rubygems 有点困惑。过程不断变化(或者至少我从互联网上得到了相互矛盾的信息)。 $ gem outdated rubygems-update (1.8.10 < 1.8.11
我正在使用 webpack-dev-server处于开发模式( watch )。每次服务器重新加载时,一些 json 和 js 文件都会挤满我的构建目录,如下所示:'hash'.hot-update.
Mamp Pro 的当前版本是 5.04 (15996)。可用更新窗口显示“Mamp 5.0.0 > 5.1。更新失败,并显示一条消息:错误:无法验证更新。请确保您使用的是安全网络,然后重试。” 更新
我想在浏览量增加时更新时间戳“lastpageview_at”。我想我已经接近了,但我总是遇到语法错误,有人知道为什么或有其他解决方案吗? 我的触发器: CREATE TRIGGER Update_l
我正在执行 SELECT ... FOR UPDATE 以锁定一条记录,然后进行一些计算,然后进行实际的 UPDATE。我正在处理 InnoDB 数据库。 但是计算可能会以我不想执行 UPDATE 的
我需要在表更新时进行一些更新和插入以强制执行正确的数据。将 UPDATE 语句放入触发器中会导致某种“循环”吗? 谢谢! 最佳答案 更新触发器中的目标表将使触发器再次触发。 您可以使用 TRIGGER
这是我的布局 当我点击链接更新时,该链接应该打开和关闭renderComment bool
我有一个包含两件事的 Angular 范围: 一个包含 10k 行的巨型表格,需要一秒钟才能渲染 一些小的额外信息位于固定的覆盖标题栏中 根据您向下滚动页面/表格的距离,我必须更新标题中的小信息位之一
标题几乎已经说明了一切。 IF NEW.variance <> 0 THEN (kill update) END IF 这可能吗? 最佳答案 查看手册 (http://dev.mysql.com/do
我有几个表,我想强制执行版本控制,并且有一个生效日期和生效日期。每当应用程序或用户向该表写入更新时,我希望它重定向到两个全新的命令:更新目标记录,以便 EFFECTIVE_TO 日期填充当前日期和时间
我正在使用 Shopware,一件奇怪的事情让我抓狂 :( 所以我将首先解释问题是什么。 除了普通商品外,还有多种款式的商品,例如不同尺码的衬衫。这是 XS、S、M、L 和/或不同颜色的同一商品……但
寻求帮助制作 mysql 触发器。我当前的代码无法按预期工作。我想做的是,如果表A中的字段A被修改,则将字段A复制到表A中的字段B。 当前代码如下所示: BEGIN IF new.set_id=301
以下查询(来自此处Postgres SQL SELECT and UPDATE behaving differently) update fromemailaddress set call =
我想使用 D3 使用以下数据创建一个列表: var dataSet = [ { label: 'a', value: 10}, { label: 'b', value: 20},
哪个更好,先进行选择,然后进行更新。或者更确切地说,像这样合而为一: UPDATE items set status = 'NEW' where itemid in (1,2,3,
对于 eloquent model events,updating 和 updated 之间有什么区别? ? 我的猜测是 updating 在模型更新之前触发,而 updated 在模型更新之后触发。
我有一个对象数组(我们称之为arr)。在我的组件输入之一的 (change) 方法中,我修改了这些对象的属性之一,但在 View (*ngFor) 中没有任何变化。我读到 Angular2 变化检测不
我正在尝试使用 d3.js 构建水平日历时间线。主要目标是突出显示用户的假期和假期。 http://jsbin.com/ceperavu/2/edit?css,js,output 我首先从“开始”日期
我是一名优秀的程序员,十分优秀!