0
我是新的delpoyd服務器,需要驗證電子郵件地址已存在。 我閱讀他的文檔,但無法達到預期的效果。在deployd服務器中從數據庫獲取結果的查詢是什麼?
根據deployd文檔,我試圖這樣做。
dpd['to-do'].get(query, function (result) { console.log(result); });
請幫助我,如果有人知道。
我是新的delpoyd服務器,需要驗證電子郵件地址已存在。 我閱讀他的文檔,但無法達到預期的效果。在deployd服務器中從數據庫獲取結果的查詢是什麼?
根據deployd文檔,我試圖這樣做。
dpd['to-do'].get(query, function (result) { console.log(result); });
請幫助我,如果有人知道。
這是我用來驗證郵件是否已經使用exists.I這段代碼的驗證event.The需要檢查「把」方法代碼,以防止用戶更改電子郵件ID的東西,已經在註冊後存在。
function validate(result, field) {
if (method === 'PUT') {
if (result.length === 0) {
} else if (!(result.length === 1 && result[0].id === id)) {
error(field, field + " is already in use");
}
} else if (result.length !== 0) {
error(field, field + " is already in use");
}
}
if (!internal) {
var email;
var method = ctx.method;
email = {
"email": this.email
};
dpd.users.get(email, function (result) {
validate(result, "email");
});
}