替换 Wicket AjaxLink 内的文本

发布于 2024-10-18 14:25:13 字数 1510 浏览 3 评论 0原文

我在我的 .java 文件中创建了一个新的 AjaxLink

add(new AjaxLink("link"){                                                                                                                                                                                                                                                                                                  
private static final long serialVersionUID = 1L;                                                                                                       

@Override                                                                                                                                              
public void onClick(AjaxRequestTarget target) {                                                                                                        
target.appendJavascript("window.open('http://www.cnn.com/2011/WORLD/africa/02/23/libya.protests/index.html?hpt="+T1+"')");              
}                                                                                                                                                      
});

并将其添加到我的 .html 文件中。

<a href="#" wicket:id="link">TEXT TO REPLACE</a> 

url 只是一个示例,但 T1 是动态的,我从我的 .java 文件中获取它。我希望“TEXT TO REPLACE”等于 T1 字符串,但我不知道该怎么做。我尝试创建一个标签并添加它,

<a href="#" wicket:id="link"><span wicket:id="linkLbl"></span></a> 

但这会出现错误。

有什么建议吗?

谢谢

I have created a new AjaxLink in my .java file

add(new AjaxLink("link"){                                                                                                                                                                                                                                                                                                  
private static final long serialVersionUID = 1L;                                                                                                       

@Override                                                                                                                                              
public void onClick(AjaxRequestTarget target) {                                                                                                        
target.appendJavascript("window.open('http://www.cnn.com/2011/WORLD/africa/02/23/libya.protests/index.html?hpt="+T1+"')");              
}                                                                                                                                                      
});

And added it to my .html file

<a href="#" wicket:id="link">TEXT TO REPLACE</a> 

The url is just an example but T1 is dynamic and I get that from my .java file. I would like the "TEXT TO REPLACE" to equal the T1 string but I don't know how to do this. I have tried creating a Label and adding it like

<a href="#" wicket:id="link"><span wicket:id="linkLbl"></span></a> 

but that gives an error.

Any suggestions?

Thanks

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

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

发布评论

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

评论(2

美人迟暮 2024-10-25 14:25:13

Label 是正确的方向,但您必须确保也在 java 代码中添加标签,它应该是 ajax 链接的子组件。

(旁注:您可能需要考虑使用 而不是 。在这种情况下,这并不重要,但有在某些情况下,额外的 标记会使您的 HTML 无效。)

The Label is the right direction, but you have to make sure that you add the label in the java code as well, it should be a child component of your ajax link.

(On a sidenote: you might want to consider using <wicket:container> instead of <span>. In this case it doesn't matter much, but there are cases where an extra <span> tag would make your HTML invalid.)

小ぇ时光︴ 2024-10-25 14:25:13

a) 对链接和标签使用通用模型,b) 不要忘记更新链接

IModel<String> model = // get model data from somewhere

add(new AjaxLink("link"){                                                                                                                                                                                                                                                                                                  
private static final long serialVersionUID = 1L;                                                                                                       

@Override                                                                                                                                              
public void onClick(AjaxRequestTarget target) {
target.addComponent(this); // update the link component
target.appendJavascript("window.open('http://www.cnn.com/2011/WORLD/africa/02/23"
  + "/libya.protests/index.html?hpt="+model.getObject()
     /* you probably want to encode this first */+"')");              
}                                                                                                                                                      
}).setOutputMarkupId().add(new Label("label",model));

a) Use a common Model for both Link and Label, b) don't forget to update the link

IModel<String> model = // get model data from somewhere

add(new AjaxLink("link"){                                                                                                                                                                                                                                                                                                  
private static final long serialVersionUID = 1L;                                                                                                       

@Override                                                                                                                                              
public void onClick(AjaxRequestTarget target) {
target.addComponent(this); // update the link component
target.appendJavascript("window.open('http://www.cnn.com/2011/WORLD/africa/02/23"
  + "/libya.protests/index.html?hpt="+model.getObject()
     /* you probably want to encode this first */+"')");              
}                                                                                                                                                      
}).setOutputMarkupId().add(new Label("label",model));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文