0

我正在使用JavaFX突出显示 web 视图中的文本。但是当我运行我的代码时;发生以下异常。有人可以给我一个解决方案吗?

提前致谢。编辑:我在下面添加了完整的错误堆栈。正如我被建议的那样。

@FXML
private void _do_highlight(WebEngine engine, String _text) {
  engine.executeScript("$('body').removeHighlight().highlight('" + _text + "')");
}    
@FXML
private void hcone(MouseEvent event) {
    str = one.getText();  // 'one' is a Textfield ... 
    if (submited == true) {    
        WebEngine engine = webview.getEngine();  
        engine.loadContent("<body><div id='content'>Hello asdfasdfasdf</div></body>");
        _do_highlight(engine, str); // Each time str is found in webview, it must be highlighted
    }
}

出现此错误

Exception in thread "JavaFX Application Thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1762)
at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1645)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54)
at javafx.event.Event.fireEvent(Event.java:198)
at javafx.scene.Scene$ClickGenerator.postProcess(Scene.java:3437)
at javafx.scene.Scene$ClickGenerator.access$7900(Scene.java:3365)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3733)
at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3452)
at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1728)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2461)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:348)
at     com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:273)
at java.security.AccessController.doPrivileged(Native Method)
at              com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:382)
at com.sun.glass.ui.View.handleMouseEvent(View.java:553)
at com.sun.glass.ui.View.notifyMouse(View.java:925)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$141(WinApplication.java:102)
at com.sun.glass.ui.win.WinApplication$$Lambda$37/584634336.run(Unknown Source)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:71)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275)
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1757)
... 30 more
Caused by: netscape.javascript.JSException: ReferenceError: Can't find variable: $
at com.sun.webkit.dom.JSObject.fwkMakeException(JSObject.java:128)
at com.sun.webkit.WebPage.twkExecuteScript(Native Method)
at com.sun.webkit.WebPage.executeScript(WebPage.java:1426)
at javafx.scene.web.WebEngine.executeScript(WebEngine.java:948)
at bioassignment.StringOccurenceController._a_highlight(StringOccurenceController.java:83)
at bioassignment.StringOccurenceController.hcone(StringOccurenceController.java:96)
... 40 more
4

1 回答 1

0

基于异常

netscape.javascript.JSException:ReferenceError:找不到变量:$

看来您没有正确加载 jQuery。

如果您查看此答案,则必须先加载 jQuery,然后执行您的脚本。

这无一例外地对我有用(尽管内容没有突出显示并且脚本不起作用......):

@FXML private WebView webView;

@FXML private TextField one;

@Override
public void initialize(URL url, ResourceBundle rb) {
}    

@FXML
private void hcone(ActionEvent event){
    String str = one.getText();
    if(!str.isEmpty()){
        WebEngine engine = webView.getEngine();
        engine.loadContent("<body><div id='content'>Hello asdfasdfasdf</div></body>");
        engine.documentProperty().addListener(
            (prop, oldDoc, newDoc) -> _do_highlight(engine, str));
    }
}

private void _do_highlight(WebEngine engine, String _text) {
    executejQuery(engine,"$(\"body\").removeHighlight().highlight('" + _text + "');");
}

该答案中引用的方法在哪里executejQuery()检查 webEngine 中加载的文档是否具有与加载的最低要求版本相对应的 jQuery 版本,如果没有,则从默认 jQuery 位置将 jQuery 加载到文档中。

请注意,我添加了一个侦听器,因为该函数要求在执行注入 jQuery 的脚本之前将文档加载到 WebView 中。

于 2014-10-28T10:08:04.277 回答