我在查找如何在node.js中調用discovery.query的示例。 更具體地說,使用多個查詢選項的示例。Watson Discovery:在node.js中使用查詢選項的示例
該文檔提到「查詢字符串」,但我不知道如何在node.js的實際調用中翻譯它。
由於提前, 阿瑞
我在查找如何在node.js中調用discovery.query的示例。 更具體地說,使用多個查詢選項的示例。Watson Discovery:在node.js中使用查詢選項的示例
該文檔提到「查詢字符串」,但我不知道如何在node.js的實際調用中翻譯它。
由於提前, 阿瑞
可以看到從文檔節點SDK線#652 - 沃森開發雲,根據SDK文檔中發現的方法接收parameter
對象{}
然後,參見一個例子使用具有Nodejs的Discovery的查詢字符串。
require('dotenv').config({ silent: true });
//for access variables .env process.env.nameVariable
var DiscoveryV1 = require('watson-developer-cloud/discovery/v1');
var discovery = new DiscoveryV1({
username: process.env.DISCOVERY_USERNAME,
password: process.env.DISCOVERY_PASSWORD,
version_date: '2017-09-01'
});
var params = {
'query': "Sayuri",
'environment_id': process.env.enviroment_id,
'collection_id': process.env.collection_id,
'configuration_id': process.env.configuration_id,
//'passages': true, //if you want to enable passages
return: 'text, title'
//'highlight': true //if you want to enable highlight
}
discovery.query(params, (error, results) => {
if (error) {
next(error);
} else {
console.log(results); //your query results
}
});
var DiscoveryV1 = require('watson-developer-cloud/discovery/v1');
var discovery = new DiscoveryV1({
username: '<username>',
password: '<password>',
version_date: DiscoveryV1.VERSION_DATE_2017_04_27
});
discovery.query({
environment_id: '<environment_id>',
collection_id: '<collection_id>',
query: 'my_query'
}, function(err, response) {
if (err) {
console.error(err);
} else {
console.log(JSON.stringify(response, null, 2));
}
});
參考:https://www.npmjs.com/package/watson-developer-cloud#discovery
,並期待到發現的API參考,瞭解查詢選項 https://www.ibm.com/watson/developercloud/discovery/api/v1/?node#query-collection
這不回答這個問題,因爲它沒有說明如何使用多個查詢選項。但是,這似乎是問題的核心。 – Leviathan