我试过了两次
console.log(message);
$wnd.console.log(message);
然而,我仍然得到:
console is undefined
或
$wnd.console is undefined
执行我的应用程序JSNI方法时。我该如何解决这个问题?
答案 0 :(得分:0)
使用Firefox看起来应该启用Firebug,否则在从Javascript调用console
时会抛出此错误。
答案 1 :(得分:0)
您应该使用java.util.Logger。
Logger logger = Logger.get("");
logger.log(Level.WARNING,"This is a warning");
此记录器还将打印到浏览器日志。
答案 2 :(得分:-1)
首先打开浏览器控制台。 (按F12)
如果在打开浏览器控制台之前运行$wnd.console
。您将收到错误消息$wnd.console is undefined
。