我是 GWT 的新手,找不到答案:我有一个很好的用于 TextBox 的 UIBinder,它可以工作,我有 UIHandler 可以使用它,好的。但是,如果我想在整个 HTML 中显示来自这个 TextBox 的值怎么办?有没有一种方法可以声明一个变量以在整个 HTML 中重用该值,或者每次我想在一个 html 页面上显示值时,我应该用新的 ui:field 名称声明新标签,并用 UIHandler 填充每个这样的标签(我可以马上做,但这看起来很无聊)?
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g="urn:import:com.google.gwt.user.client.ui">
<g:HTMLPanel>
<g:TextBox ui:field="myField"/><br/>
<div>
<p>
What do I need to put here if i want to see **myField.getValue()** in html, may be even multiple times?
And **here**?
I want to avoid creation of new and new objects in back-end class for just one value, multiple labels here are ok. How to push one value in all of them, when myField content is changed?
</p>
</div>
</g:HTMLPanel>