连接websocket和angularjs时出现错误

时间:2014-03-12 11:36:25

标签: angularjs websocket

我正在尝试运行此功能 example

我收到了这样的错误消息

Error: [$injector:nomod] Module 'MyApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument. http://errors.angularjs.org/1.2.14/$injector/nomod?p0=MyApp return new Error(message);

任何人都建议我如何使用websockets在angularjs中实现事件处理。

1 个答案:

答案 0 :(得分:0)

你必须创建一个模块才能使用它......所以你必须拥有这段代码

angular.module('MyApp', [/*dependencies or empty array*/])

脚本中的某处 - 某处意味着在任何其他angular.module('MyApp').whatever...代码之前