如何将typeahead远程服务用于骨干网休息服务。
`$('#member-search').typeahead([
{
name: 'orgs',
remote: {
url: '/rest/orgLookupService?q=%QUERY'
},
header: '<h3 class="league-name">orgs</h3>'
}
]);`
上面的代码我从未登陆过orgLookupService。
这是我的服务
的js文件exports.fetchTypeAhead = function(req, res){
console.log('inside service');
console.log(querystring);
};
这是我的路由休息服务的js文件
app.get('/rest/orgLookupService', organisationResource.fetchTypeAhead);
但我可以从
访问它http://localhost:3000/rest/orgLookupService.
任何指针都会有所帮助。
谢谢, 玛利亚。