gpt4 book ai didi

java - 很难让 JSNI 与 Errai 一起工作

转载 作者:行者123 更新时间:2023-12-01 23:40:51 25 4
gpt4 key购买 nike

我发现很难让 JSNI 直接与 Errai 一起工作,例如以下代码:

private static native void _createCallOut(JavaScriptObject callout)/*-{
$wnd.hopscotch.getCalloutManager().createCallout(callout);
}-*/;

这个 JSNI 被称为 roothing

@PageShowing
public void onShow() {
CallOut startCallOut = new CallOut("dashboard", Placement.RIGHT);
startCallOut.setTitle("Take an example tour");
startCallOut.setContent("Start by taking an example tour to see GWT-Tour in action!");
startCallOut.setWidth(240);
startCallOut.centerXOffset();
startCallOut.centerArrowOffset();
GwtTour.createCallOut(startCallOut); // Here!
}

如果第一个参数是手动输入到 GWT 应用程序 HTML 中的 DIV 的 ID,则此 Java 代码 CallOut 可以正常工作,但如果它位于 Errai 的页面模板上,则这将不行。有什么想法为什么它不起作用吗?

最佳答案

@PageShowing 生命周期方法在模板添加到 DOM 之前被调用。来自 PageShowing JavaDoc:

Indicates that the target method should be called when the @Page widget it is a member of is about to be displayed in the navigation content panel: after the widget's @PageState fields have been updated and before it is displayed in the navigation content panel.

尝试使用@PageShown

关于java - 很难让 JSNI 与 Errai 一起工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17977011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com