0
Cloudant에서 내 데이터베이스를 쿼리 할 때 403 forbidden
이 표시됩니다. "Cloudant에서 임시보기가 사용 중지되었습니다."임시보기가 Cloudant에서 사용 중지됨
이 문제를 방지하려면 쿼리를 다시 작성할 수 있도록 도와주십시오.
감사
.factory('usersDatabaseRemote', [
'pouchDB',
function (pouchDB) {
'use strict';
var usersDatabaseRemote = pouchDB('https://id:[email protected]/board_users');
return usersDatabaseRemote;
}
])
과 : 그들은 유지하는 가치 때문에 너무 사용자 오류의 근원의 크고하지로 결정했기 때문에
usersDatabaseRemote.query(mapByEmail, {
key: email,
include_docs: true
}).then(function (result) {
if (!result.rows.length) { //email doesn't exist in DB
return callback(false);
}
if (result.rows.length === 1) {
return callback(result);
}
console.log("problem : several docs in the DB with same email, run a duplicate check on the DB");
return callback(result);
});