我的 Angular 代码在 Plunker 中不起作用

My Angular code not working in Plunker

添加了 ng-app。但它仍然显示为纯文本而不是结果。缺少什么?

<!DOCTYPE html>
<html>

  <head>
    <script data-require="angular.js@*" data-semver="2.0.0-alpha.45" 
        src="https://code.angularjs.org/2.0.0-alpha.45/angular.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>

  <body ng-app>
    <h1>Hello Plunker!</h1>
    {{ 67 / 23 }}
  </body>

</html>

我发现 Plunker 提供给您的 angular 库不起作用。

只需将脚本元素替换为 google 提供的版本即可。

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script>