如何在Angular Yeoman Generator中查看列表中的单个项目?

时间:2015-04-18 23:12:00

标签: javascript html angularjs angular-fullstack

我有一个项目,我正在使用yeoman fullstack生成器处理我的用户登录,发布和删除的身份验证。我希望能够单击列表中正在填充的项目,并在另一页面上查看该项目的更多详细信息。

这是HTML

<div id="eventsListContainer" class="row">
<div class="col-lg-12">
  <h1 class="listHeader">Nightlife</h1>
  <ul class="nav nav-tabs nav-stacked col-md-4 col-lg-4 col-sm-6" ng-repeat="thing in awesomeThings | orderBy: '-date' | filter: 'Nightlife'">
    <li><a class="eventItem" ng-href="/things/:id">
        <p class="eventName">{{thing.name}}</p> 
        <p class="eventDate">{{thing.date}}</p>
        <!-- <button type="button" class="close" ng-click="deleteThing(thing)">&times;</button> -->
    </a></li>
  </ul>
</div>

这是我的视图控制器(所以在我看来,调用获取特定ID的功能应该在这里,如果我错了,请纠正我)

angular.module('applicationtonightApp')
.controller('ViewCtrl', function ($scope, $http, socket, $stateParams) {
$scope.awesomeThings = {};

$http.get('/api/things/'+$stateParams._id ).success(function(thing) {
  $scope.awesomeThings = awesomeThings;
  socket.syncUpdates('thing', $scope.awesomeThings);
});

$scope.$on('$destroy', function () {
  socket.unsyncUpdates('thing');
});

})

这是我的控制器,它处理所有功能,这是由fullstack生成器生成的。

/**
 * Using Rails-like standard naming convention for endpoints.
 * GET     /things              ->  index
 * POST    /things              ->  create
 * GET     /things/:id          ->  show
 * PUT     /things/:id          ->  update
* DELETE  /things/:id          ->  destroy
*/

'use strict';

var _ = require('lodash');
var Thing = require('./thing.model');

// Get list of things
exports.index = function(req, res) {
Thing.find(function (err, things) {
if(err) { return handleError(res, err); }
return res.json(200, things);
});
};

// Get a single thing
exports.show = function(req, res) {
 Thing.findById(req.params.id, function (err, thing) {
  if(err) { return handleError(res, err); }
  if(!thing) { return res.send(404); }
  return res.json(thing);
 });
};

// Creates a new thing in the DB.
exports.create = function(req, res) {
 Thing.create(req.body, function(err, thing) {
 if(err) { return handleError(res, err); }
return res.json(201, thing);
});
};

 // Updates an existing thing in the DB.
 exports.update = function(req, res) {
 if(req.body._id) { delete req.body._id; }
Thing.findById(req.params.id, function (err, thing) {
if (err) { return handleError(res, err); }
if(!thing) { return res.send(404); }
var updated = _.merge(thing, req.body);
updated.save(function (err) {
  if (err) { return handleError(res, err); }
  return res.json(200, thing);
});
});
};

// Deletes a thing from the DB.
exports.destroy = function(req, res) {
Thing.findById(req.params.id, function (err, thing) {
if(err) { return handleError(res, err); }
if(!thing) { return res.send(404); }
thing.remove(function(err) {
  if(err) { return handleError(res, err); }
  return res.send(204);
});
});
};

function handleError(res, err) {
 return res.send(500, err);
}

请让我知道我做错了什么或需要改变什么!提前感谢您的时间。

1 个答案:

答案 0 :(得分:0)

我似乎通过摆弄代码并在线查找不同的答案来解决它。我没有在我的视图中正确地调用我的视图。我需要添加:id如下。

angular.module('applicationtonightApp')
 .config(function ($routeProvider) {
  $routeProvider
  .when('/view/:id', {
    templateUrl: 'app/view/view.html',
    controller: 'ViewCtrl'
  });
 });

并将我的view.controller.js更新为以下内容。

angular.module('applicationtonightApp')
 .controller('ViewCtrl', function ($scope, $http, socket, $routeParams) {
  $scope.awesomeThings = {};

   $http.get('/api/things/'+ $routeParams.id ).success(function(thing) {
  console.log('WORKING');
  $scope.thing = thing;
  socket.syncUpdates('thing', $scope.awesomeThings);
});

$scope.$on('$destroy', function () {
  socket.unsyncUpdates('thing');
});

})

这似乎现在正常运作。