我一直在尝试关注Dan Wahlin的YT视频,并使用我自己的数据以并行方式实现它。后端是快速和mongo,下面的代码一直工作,直到我开始添加路由。链接的两个文件存在,一切都在服务器上运行,排除了类似海报的问题,但部分没有加载(我看到一些迹象表明ng-view存根已被角度改变,但没有注入新内容)。有线索吗?
<html ng-app="restosApp">
<head>
</head>
<body>
<div>
<div data-ng-view></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.2/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.2/angular-route.min.js"></script>
<script>
var app = angular.module('restosApp', ['ngRoute']);
app.controller('listController', function($scope, restosFactory) {
function init() {
restosFactory.getQnames().success(function(data){
$scope.qnames = data;
});
}
init();
});
app.controller('editorController', function($scope, restosFactory) {
function init() {
restosFactory.getFullData('marius').success(function(data){
$scope.resto = data;
});
}
init();
});
app.config(function ($routeProvider) {
$routeProvider
.when('/', {
controller: 'listController',
templateURL: 'qname.html'
})
.when('/edit', {
controller: 'editorController',
templateURL: 'editor.html'
})
.otherwise({
redirectTo: '/'
});
});
app.factory('restosFactory', function($http){
var factory = {};
factory.getQnames = function() {
return $http.get('http://localhost:3000/data');
};
factory.getFullData = function(q) {
return $http.get('http://localhost:3000/edit?qname='+q);
};
return factory;
});
</script></body>
在快递方面我有
app.get '/qname.html', (req, res) ->
res.sendfile 'qname.html'
app.get '/editor.html', (req, res) ->
res.sendfile 'editor.html'
和http://localhost:3000/qname.html
似乎正确地返回文件的内容(下面)
<section class="container">
<label>search qName:</label>
<input type="text" ng-model="searchname" placeholder="Enter a name here">
<div ng-repeat="qname in qnames | filter: searchname | orderBy: 'date':true"> <!-- Newest first -->
<a href="/edit?qname={{qname.qname}}">{{qname.rname}}</a>
</div>
</section>