切换到服务时,Ng-click按钮不起作用(Thinkster教程)

时间:2016-07-26 01:32:50

标签: javascript angularjs

我一直在研究这个教程(https://thinkster.io/mean-stack-tutorial),一旦我切换到添加角度服务,incrementUpvotes停止工作,我似乎无法找到原因。我是Angular服务的新手,我不知道我是否已经正确实例化或是否存在其他问题。

任何帮助表示赞赏!!!

的index.html

<html>
<head>
  <title>Flapper News</title>
  <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">

  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js"></script>
  <script src="app.js"></script>
  <script src="http://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.10/angular-ui-router.js"></script>
  <style> .glyphicon-thumbs-up { cursor:pointer } </style>
</head>
<body ng-app="flapperNews">
  <div class="row">
    <div class="col-md-6 col-md-offset-3">
      <ui-view></ui-view>
    </div>
  </div>

  <script type="text/ng-template" id="/home.html">

    <div class="page-header">
        <h1>Flapper News</h1>
      </div>

      <div ng-repeat="post in posts | orderBy:'-upvotes'">
        <span class="glyphicon glyphicon-thumbs-up"
          ng-click="incrementUpVotes(post)"></span>
        {{post.upvotes}}
        <span style="font-size:20px; margin-left:10px;">
          <a ng-show="post.link" href="{{post.link}}">
            {{post.title}}
          </a>
          <span ng-hide="post.link">
            {{post.title}}
          </span>
        </span>
      </div>

      <form ng-submit="addPost()"
        style="margin-top:30px;">
        <h3>Add a new post</h3>

        <div class="form-group">
          <input type="text"
            class="form-control"
            placeholder="Title"
            ng-model="title"></input>
        </div>
        <div class="form-group">
          <input type="text"
          class="form-control"
          placeholder="Link"
          ng-model="link"></input>
        </div>
        <button type="submit" class="btn btn-primary">Post</button>
      </form>

  </script>
</body>
</html>

app.js

var app = angular.module('flapperNews', ['ui.router']);

app.config([
'$stateProvider',
'$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {

  $stateProvider
    .state('home', {
      url: '/home',
      templateUrl: '/home.html',
      controller: 'MainCtrl'
    });

  $urlRouterProvider.otherwise('home');
}]);

app.factory('posts', [function(){
    var o = {
        posts: []
    };
    return o;

}]);

app.controller('MainCtrl', [
    '$scope',
    'posts',
    function($scope, posts){
        $scope.test = 'Hello world!';
        $scope.posts = posts.posts;
        $scope.posts = [
            {title: 'post 1', upvotes: 5},
            {title: 'post 2', upvotes: 2},
            {title: 'post 3', upvotes: 15},
            {title: 'post 4', upvotes: 9},
            {title: 'post 5', upvotes: 4}
        ];

        $scope.addPost = function() {
            if(!$scope.title || $scope.title === '') { 
                return; 
            }
            $scope.posts.push({
                title: $scope.title,
                link: $scope.link, 
                upvotes: 0
            });
            $scope.title = '';
            $scope.link = '';
        };
        $scope.c = function(post) {
            post.upvotes += 1;
        };
    }]);

1 个答案:

答案 0 :(得分:0)

很少。

首先,在这里您要从服务中导入数据,然后立即覆盖它:

    $scope.posts = posts.posts;
    $scope.posts = [
        {title: 'post 1', upvotes: 5},
        {title: 'post 2', upvotes: 2},
        {title: 'post 3', upvotes: 15},
        {title: 'post 4', upvotes: 9},
        {title: 'post 5', upvotes: 4}
    ];

但要回答您的直接问题,您的ng-click指向了一个名为incrementUpVotes(post)的函数,因此它正在您的控制器上查找定义为$scope.incrementUpVotes的函数。看起来你写了这个函数,但是把它称为$scope.c,所以只需将它重命名为$scope.incrementUpVotes,你应该很好。

    $scope.incrementUpVotes = function(post) {
        post.upvotes += 1;
    };