如何让 UiBinder 传递标签而不绑定它们以便 XFBML 工作?

发布于 2024-11-03 19:07:16 字数 842 浏览 3 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

波浪屿的海角声 2024-11-10 19:07:16

事实证明,这就像添加 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文