如何让 UiBinder 传递标签而不绑定它们以便 XFBML 工作?
我有一个使用 GWT 和 UiBinder 设计的应用程序。现在我们正在尝试通过 facebook 设置登录。我已经在我的应用程序的 HTML 中包含了用于初始化 Facebook javascript 的脚本,并且我正在尝试获取 Facebook 登录按钮。
Login.ui.xml 包含一个 facebook 登录标签:
<ui:UiBinder
xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g="urn:import:com.google.gwt.user.client.ui" >
<g:HTMLPanel addStyleNames="login">
<h2>Login Using Your Account</h2>
<g:TextBox ui:field="username"/>
<g:PasswordTextBox ui:field="password"/>
<g:Button ui:field="loginButton">Login</g:Button>
<fb:login-button/>
</g:HTMLPanel>
</ui:UiBinder>
UiBinder 不允许将其作为 HTML 传递,因为它试图将其绑定到某些东西。我不知道如何告诉 UiBinder 忽略这个标签,并让它不受干扰地通过。
我如何 a) 允许忽略 fb:login-button,或 b) 定义允许定义非 GWT 标签的 xmlns:fb 标签?
I have an application designed that's using GWT and UiBinder. Now we're trying to setup a login through facebook. I've included the script to init the fb javascript in my application's HTML, and I'm trying to get a facebook login button.
The Login.ui.xml contains a facebook login tag:
<ui:UiBinder
xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g="urn:import:com.google.gwt.user.client.ui" >
<g:HTMLPanel addStyleNames="login">
<h2>Login Using Your Account</h2>
<g:TextBox ui:field="username"/>
<g:PasswordTextBox ui:field="password"/>
<g:Button ui:field="loginButton">Login</g:Button>
<fb:login-button/>
</g:HTMLPanel>
</ui:UiBinder>
UiBinder won't allow this to be passed through as HTML because it's trying to bind it to something. I'm not sure how to tell UiBinder to ignore this tag, and let it pass through un-molested.
How can I either a) Allow the fb:login-button be ignored, or b) define an xmlns:fb tag that allow the definition of a non-GWT tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,这就像添加 xmlns:fb="http://www.facebook.com/2008/fbml" 一样简单。它在 IntelliJ 编辑器中显示为错误,但会编译并包含该标签。
Turns out it was as easy as adding xmlns:fb="http://www.facebook.com/2008/fbml". It shows up as an error in the editor for IntelliJ, but compiles and includes the tag.