我使用python 2.7作为前端的后端和角度js。我正在使用AWS弹性搜索2.3.3,它是活动的并且数据被索引。但是当我尝试从角度查询索引时,我面临以下问题。
(function() {
'use strict';
angular.module('jobgatorApp', ['ui.router', 'ui.bootstrap', 'angular-carousel', 'ui.tinymce', 'elasticsearch'
//NO NOT TOUCH THE FOLLOWING LINE, IT IS SEARCH AND REPLACED BY GRUNT WHEN WE MINIFY THE JS
])
//TODO RESEARCH LAZY LOAD http://stackoverflow.com/questions/28184616/angularjs-lazy-load-template-and-controller-in-ui-router-requirejs-oclazyload
//TODO RESEARCH SECURITY http://stackoverflow.com/questions/20870386/authentication-with-angularjs-session-management-and-security-issues-with-rest
//TODO RESEARCH SECURITY http://www.pluralsight.com/courses/angularjs-security-fundamentals
.factory('elasticClient', ['esFactory', function (esFactory) {
return esFactory({
location: 'https://search-myjobgator-mkumzk6ax5z3ogumel2ga37bq4.us-west-2.es.amazonaws.com',
sniffOnStart: true,
sniffInterval: 300000
});
}])
})();