伙计们,
我正在尝试使用 Angular 字体来自动完成:
我的 mongo 集合中的每个对象都如下所示:
{
'name': 'George ow"
'address': "123 lakeshide blvd"
'number': '123-456-790'
'ssn': '123-12345'
...
..
}
我想对此集合的名称字段进行自动完成
我当前的网络服务如下所示。它目前用于通过id查询和获取人员。
server.get('/peopleList/:id', function(req, res, next) {
var _id = collection.db.bson_serializer.ObjectID.createFromHexString(req.params.id);
collection.findOne({ '_id' : _id}, function(err,data) {
if (err) {
throw err;
}
res.send( data );
});
});
我使用此 Web 服务的资源如下所示:
.factory('PeopleList', ['$resource', function($resource) {
return $resource(BaseURL + 'peopleList/:_id', {_id: '@_id'}, {} );
}])
在前端,我的输入框如下:
<input type="text" ng-model="person.name" placeholder="Enter name here" typehead = "">
在这一点上..我迷路了..我如何连接剩余的点?