Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は両方を試しました
console.log(message); $wnd.console.log(message);
しかし、私はまだ得ています:
console is undefined
また
$wnd.console is undefined
アプリケーションのJSNIメソッドを実行するとき。どうすればこれを修正できますか?
Firefox では、Firebug をオンにする必要があるようです。オンにしないconsoleと、Javascript から呼び出されたときにこのエラーがスローされます。
console
java.util.Logger を使用する必要があります。
Logger logger = Logger.get(""); logger.log(Level.WARNING,"This is a warning");
このロガーは、ブラウザ ログにも出力されます。