我正在尝试运行这个示例
i got a error message like this
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);
有没有人建议我如何在angularjs中使用websockets实现事件处理。
你必须创建一个模块来使用它…所以你必须有这段代码
angular.module('MyApp', [/*dependencies or empty array*/])
在脚本中的某个地方-某个地方意味着在任何其他angular.module('MyApp').whatever...
代码之前