0

我在 mongodb 中有一个名为 Dish 的集合,示例数据是 -

[{
"_id": ObjectId("56c839b969431a9913cafa65"),
"name": "Dish 01",
"description": "Dish 01 description",
"ingredients": [{
    "id": "56c4a40bf97c039d44e89185",
    "name": "onion",
}, {
    "id": "56c4a40bf97c039d44e89145",
    "name": "salt",
}, {
    "id": "56c4a40bf97c039d44e89176",
    "name": "spices",
}],
"category": "entree",
"image": "https://s3-ap-southeast-1.amazonaws.com/sichu-bucket/2016-02-20T13:10:31.334Zapi.js"
}, {
"_id": ObjectId("56c839b969431a9913cafa70"),
"name": "Dish 02",
"description": "Dish 02 description",
"ingredients": [{
    "id": "56c4a40bf97c039d44e89185",
    "name": "onion",
}, {
    "id": "56c4a40bf97c039d44e89145",
    "name": "oil",
}],
"category": "main",
"image": "https://s3-ap-southeast-1.amazonaws.com/sichu-bucket/2016-02-20T13:10:31.334Zapi.js"
}]

现在我想要里面有洋葱的菜,我想通过使用loopback-angularjs-sdk来获得结果

我已将此添加到我的 Dish.json 文件中

"settings": {
    "mongodb": {
      "allowExtendedOperators": true
    }
}

我不知道应该怎么做。请指导我。

4

1 回答 1

0

在您的 ngApp 控制器中传递 Dish 对象,然后您可以使用 Dish.find 过滤器创建一个过滤器 api,它将在内部搜索 mongo 以查找所有带有洋葱成分的菜肴。

Dish.find({"filter": {"where": {"indegredients.id": "56c4a40bf97c039d44e89185"}}}, function (dishes) {
});

有关过滤器 api 的更多信息,或者如何通过 angular sdk 调用它们,您可以使用。 https://docs.strongloop.com/display/public/LB/Where+filter https://docs.strongloop.com/display/public/LB/AngularJS+JavaScript+SDK

此外,您还可以为环回 Angular sdk 文档运行本地服务器。

为了生成角度 sdk 文档,您可以做的是

lb-ng-doc client/js/services/lb-services.js

在http://localhost:3030/浏览文档

于 2016-02-23T11:46:51.887 回答