15

表示を使用してアプリを実行した後、IOS プラットフォームでionic 2 beta 11作業ていて、次のメッセージが表示されました。ionic run ioswhite screen

Native: deviceready did not fire within 2000ms. This can happen when plugins are in an inconsistent state. Try removing plugins from plugins/ and reinstalling them.

それについて何か提案はありますか?問題は何ですか?

4

2 に答える 2

10

これはいくつかの問題が原因で発生している可能性があるため、いくつかのことを試す必要があります。

  1. 実行してプラットフォームを再インストールしますionic state reset --platform
  2. これを行う前に実行してプラグインを再インストールしてください。すべてのプラグインがファイルionic state reset --pluginsに含まれていることを確認してください。package.json
  3. @joshmoronyがここContent-Security-Policyで言っているように、これをあなたのものから変更してみてくださいindex.html

    <meta http-equiv="Content-Security-Policy" content="default-src gap://ready file://* *; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; style-src 'self' 'unsafe-inline' *”&gt;
    
于 2016-12-09T12:51:45.697 に答える