MarkLogic - node.js - 如何要求 cts 进行搜索

MarkLogic - node.js - How to require cts for search

我认为我的节点数据库连接工作正常:

var marklogic = require('marklogic');
var db = marklogic.createDatabaseClient({ ...

现在我想做 cts.search 我如何要求 cts?

你不知道。 cts 函数用于数据库中的 运行ning 查询。使用 Node.js 客户端 API,您将使用查询生成器。 feature introduction, with more detail in the Getting Started tutorial and the Node.js Application Developer's Guide 中有一个示例。

您可能混淆了 Node.js 客户端 API 和 Server-side JavaScript。前者用于让中间层 Node.js 代码与 MarkLogic 交互。后者用于在数据库中编写 运行 的 REST API 扩展或转换(并且可以从节点 API 调用)。