用coffescript编译的单行文件angular.module缺少分号?

时间:2017-02-10 10:53:53

标签: javascript angularjs coffeescript

// Generated by CoffeeScript 1.12.3
(function() {
  angular.module('mymodule', []);

}).call(this);
<html ng-app="mymodule">
      <head>

      </head>

      <body>
        ...Testing...
      </body>
      <script src="app/app.js"></script>
</html>

以下coffescript代码段编译为javascript并给我浏览器控制台错误:

angular.module 'mymodule', []
  

SyntaxError:missing;在陈述之前[了解更多] app.js:1:5

0 个答案:

没有答案