1

ember cli アプリケーションでsocket.ioを使用したいので、次のようにインストールしました。

bower install socket.io --save

そして、次の行を my に追加しましたBrocfile.js:

app.import('bower_components/socket.io/index.js');

これにより、ブラウザ コンソールに次の 2 つのエラーが表示されます。

Uncaught ReferenceError: module is not defined
Uncaught Error: Could not find module ember-moment/helpers/moment

何か案は?

4

1 に答える 1

2

エラーなしでインポートするsocket.io-clientを使用して終了しました。

app.import('bower_components/socket.io-client/socket.io.js');
于 2015-03-14T21:58:40.927 に答える