0
我寫了下面的代碼在bluemix的index.html頁面:如何使用node.js訪問cloudant文檔中的數據?
$(document).ready(function() {
$("button").click(function() {
var Cloudant = require('cloudant');
var password = "#password";
var myAccount = "#accountname";
Cloudant({account:myAccount, password:password}, /* @callback */ function(err, cloudant,body) {
if (err) {
return ("Failed");
} else {
printTable(body);
}
});
我想從cloudant數據庫中的文檔,並在表中顯示。
謝謝亞歷克斯的答案。當我寫這段代碼時,我得到一個javascript錯誤,指出「require is not defined」。你能幫我避免這個錯誤嗎? – Suchitra
Suchitra,這只是一段代碼,而不是完整的代碼。如果您在Bluemix中創建Node.js Cloudant數據庫Web Starter應用程序並下載代碼,則app.js將具有更完整的示例。另請注意,這是Node.js服務器端代碼,不是純粹的JavaScript客戶端代碼(即不適用於您最初提到的index.html頁面。 –