You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Skylar Ittner 41e1c6e267 Branding 8 years ago
..
README.md Branding 8 years ago
index.md Branding 8 years ago

README.md

cordova-plugin-console

Build Status

このプラグインは、その console.log() がすることができます便利なことを確認するものです。 それは iOS、Ubuntu、Windows Phone 8 は、Windows に追加の関数を追加します。 場合はあなたのための console.log() の作品に満足しているし、おそらく必要はありませんこのプラグイン。

このプラグインでは、グローバル ・ console オブジェクトを定義します。

オブジェクトは、グローバル スコープでですが、このプラグインによって提供される機能は、deviceready イベントの後まで使用できません。

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    console.log("console.log works well");
}

インストール

cordova plugin add cordova-plugin-console

Android の癖

アンドロイド以外のいくつかのプラットフォームで console.log() は console.log (「1」、「2」、「3」) など、複数の引数に動作します。 しかし、アンドロイドは、最初の引数でのみ動作します。 console.log() に後続の引数は無視されます。 このプラグインが原因ではない、それは Android の自体の制限です。