2

我正在使用 MongoDB 编写一个快速原型。我正在尝试使用 angularJS 和 MongoDB 的内置休息服务设置一个快速的 webview。为了查看网站,我没有设置任何人工服务器,我正在使用 WebStorm 内置服务器。

我正在使用以下参数启动 MongoDB

mongod --rest

我在 mongod 控制台中收到以下错误

[websvr] don't know how to handle a [OPTIONS]

我的 angularJS 控制器:

var csrMap = angular.module('app', []);

csrMap.controller('AppCtrl', function AppCtrl($scope, $http) {
   $http.get('http://localhost:28017/test/foo/').success(function(data) {
        $scope.foo = data;
   });
});

我的 html 文件

<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
    <title></title>
    <script src="js/angular.js"></script>
    <script src="js/controllers.js"></script>
</head>
<body ng-controller="AppCtrl">
    <ul>
        <li ng-repeat="alert in foo.rows">
            {{alert.timestamp | date:'dd.MM.yy HH:mm'}}: {{alert.alertMessage}}
        </li>
    </ul>
</body>
</html>

我在本地文件中解析 json 数据并从那里读取,效果很好,这是一个片段:

{
    "offset" : 0,
    "rows": [
        { "_id" : { "$oid" : "525ef21e89806dfa17cef146" }, "timestamp" : 1381954078346, "alertMessage" : "foo" } ,
        { "_id" : { "$oid" : "525ef21e89806dfa17cef147" }, "timestamp" : 1381954078381, "alertMessage" : "foobar" } ,
    ],

    "total_rows" : 688 ,
    "query" : {} ,
    "millis" : 25
}

我也可以在 Firefox 中调用 rest 服务并得到适当的响应。

我会很感激任何帮助。我已经上下搜索了谷歌,但我没有找到任何关于该错误的材料......

4

1 回答 1

0

And the answer is:

Use a REST Service instead of an http Service (which the Simple Rest Service from MongoDB obviously is) and everything works fine. I'm using kule now and everything works as intended. I found the answer here: Using AngularJs and MongoDB/Mongoose

Find the REST Services for MongoDB here: http://docs.mongodb.org/ecosystem/tools/http-interfaces/#HttpInterface-RESTInterfaces

于 2013-10-22T11:35:05.397 回答