如何在 Ionic 框架中 运行 angular 代码片段

How to run angular code snippet in Ionic framework

所以我在 angular 中有这个在 jsfiddle 上运行的简单代码,你可以通过按 运行 代码片段看到:

function ContactController($scope) {
    $scope.contact = 0;

    $scope.add = function() {
        $scope.contact += 1;
    }
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<div ng-app="" ng-controller="ContactController">

    <button ng-click="add()">Add</button>

    <div>{{ contact }}</div>

</div>

但是当我尝试在我的 Ionic 应用程序中使用它时,它不起作用。这是我完整的 index.html 文件:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
    <script src="js/controllers.js"></script>
    <script src="js/services.js"></script>
</head>

<body id="body">

<div ng-app="" ng-controller="ContactController">

    <button ng-click="add()">Add</button>

    <div> {{ contact }} </div>


</div>

<script>
    function ContactController($scope) {
        $scope.contact = 0;

        $scope.add = function() {
            $scope.contact+=1;
        }
    }
</script>

</body>
</html>

任何人都可以告诉我我需要在 index.html 中包含什么才能让 angular 工作吗?

是的,您需要初始化您的应用程序。在你的 app.js 文件中你应该看到

angular.module('starter', ['ionic'])

所以在你的 index.html 中你有 ng-app=""

需要说的

ng-app="starter"

你 html 应该是这样的:

<div ng-app="starter" ng-controller="ContactController">

    <button ng-click="add()">Add</button>

    <div> {{ contact }} </div>

</div>

目前没有引导任何内容,angular 没有附加到页面。