问题标签 [sails-orientdb]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
234 浏览

sails.js - 这可以用sails-orientdb适配器替换waterline-orientdb适配器吗?

我正在尝试用sails-orientdb适配器替换waterline-orientdb,但在顶部我仍然想使用waterline,因为waterline-orientdb适配器存在关于orientdb边缘的问题,所以这可以在水线下使用sails-orientdb适配器吗?我只想知道我可以用sails-orientdb替换waterline-orientdb吗?

0 投票
1 回答
76 浏览

node.js - 为什么sails-orientdb 每次启动我的应用程序时都会尝试创建一个新数据库?

我正在使用sails-orientdb 作为水线适配器,但是每当我重新启动我的应用程序时都会出现问题,它会尝试创建一个新数据库,该数据库在我第一次使用时已经创建,所以我不知道结构和功能和sails-orientdb 的流程是否可以避免这个调用?

0 投票
1 回答
227 浏览

node.js - Waterline-OrientDB - 双向边缘

我在 Sails 中声明了两个模型,我正在使用 Waterline-Orientdb 适配器,但不知道如何通过双向边缘连接它们

问题模型

答案模型

我希望能够在两个模型之间创造优势。用户创建一个问题,然后用户可以发布回复。

0 投票
1 回答
180 浏览

sails.js - Waterline Edges associations

I just prepared a model which contains two vertices and one edge between them, v1, v2 and e1, while v1 is instance or vertex of class A, and v2 is vertex of class B. e1 is the instance of class E. I wanted to prepare schema in waterline for this kind of relation and the schema looks like this:

while if I use this schema to map into orientdb my fields it shows collection:'B' as a Linkset in A class. I just want to relate them via edges. Is there a way to skip mentioning collections and just build a relation which will map @rid of edge e1 into OUT or IN field of these classes as needed?

0 投票
1 回答
388 浏览

sails.js - 使用 waterline-orientdb 生成模式

在我使用过的许多以前的 Waterline 数据库中,您可以使用 Waterline/Sails 指定的“通用”语法创建一个 Waterline/Sails 模型,这样就可以了。当我开始使用 OrientDB 和 Waterline-OrientDB 时,似乎存在一个问题,即我必须在 OrientDB 中定义我的完整模式,然后才能持久化任何内容。这是使用 Waterline-OrientDB 的要求,还是我的 OrientDB 设置配置不正确,这会强制首先定义模式。

如果需要创建,应该如何在 OrientDB 数据库和 SailsJS 中对边缘进行建模,以确保 Sails/Waterline ORM 能够正确持久化。我认为它会“正常工作”,但在整个 waterline-orientdb 文档中都引用了创建边缘等的调用。这似乎是文档中的一个关键特性 - 您必须定义什么,以及不为 SailsJS 模型对象定义什么可以摆脱。

0 投票
1 回答
504 浏览

sails.js - orientdb 和 waterline 中的事务

我正在尝试在水线中创建事务,但我从 OrientDB 收到此错误:

这是我的代码:

我还BEGIN直接在 orientdb 中检查了命令,但同样的错误。

0 投票
1 回答
201 浏览

sails.js - 选择边缘属性并在水线中扩展/填充

如何在水线边缘填充和填充我正在使用 waterline-oreintdb 采用者

这是我的查询

谢谢

0 投票
2 回答
1482 浏览

node.js - TypeError:无法调用未定义的方法“then”

我在 Sailsjs 的控制器内执行以下代码。底层适配器是sails-orientdb。我收到以下错误

TypeError:无法调用未定义的方法“then”

为什么会出现这个错误?

0 投票
1 回答
248 浏览

node.js - 在标准不起作用的情况下填充水线

我正在使用 waterline 和 waterlinhe-orientdb。我有用户和订单顶点类并购买了边缘类用户---已购买-->订单我正在尝试应用 Where 标准来填充。但不适用于填充。这是我的代码

架构

0 投票
2 回答
1508 浏览

database - 选择和更新 oriento / orientjs 中的多条记录和水线中的交易

如何在 oriento 中选择或更新多条记录?就像在水线中一样,我们可以

但在水线交易不可用。所以我想使用:

谢谢。