为了账号安全,请及时绑定邮箱和手机立即绑定

同步调用 javascript promise

同步调用 javascript promise

料青山看我应如是 2023-05-11 14:40:34
我试图在我的程序完成并发送邮件之前在数据库中插入一条记录。但问题是我认为我的函数正在异步运行,在我收到成功插入数据库的成功消息之前,我的程序已完成并且 te 永远不会抛出错误。以下是我尝试过的。Client.insertUser(sendInfo)  .then(    function (Data) {      if (Data == null || Data.User == null || Data.isPersonaUpdated == false) {        $state.go('register.failed');      }    }  )  .catch(    function () {      $state.go('register.failed');    }  )客户端.js_this.insertUser = function (sendInfo) {  var deferred = $q.defer();  $http({    method: 'POST',    url: Globals.userAuth ? 'InsertUser.go' : 'modules/guest/InsertUser.go',    data: sendInfo,    headers: {      'Content-type': 'application/json'    }  }).then(function successCallback(response) {    deferred.resolve(response.data);  }, function errorCallback(response) {    deferred.reject(response);  });  return deferred.promise;};Async并且await因为我们使用的是 ES6 而无法正常工作。关于如何使我的承诺调用同步的任何建议都会有所帮助。发送激活邮件正在调用不同的承诺,并且不是同一链的一部分。Client.sendAccountActivationMail(u).then(function(data) {            var isSuccess = angular.fromJson(data);            if (isSuccess) {            }         });
查看完整描述

1 回答

?
慕的地10843

TA贡献1785条经验 获得超8个赞

如果您从回调内部返回一个非承诺值.then,那么它将自动包装在一个承诺中。这甚至适用于默认返回值undefined.


这意味着您可以使用 if 语句有条件地创建用户。


function logIn({ shouldCreateUser, username, emailAddress }) {

  console.log("In logIn...");

  return Promise.resolve()

    .then(() => {

      console.log("In first then...");

      if (shouldCreateUser) {

        return createUser(username); // !

      }

      // If control moves here, a promise is implicitly returned with a value of `undefined`

    })

    .then(() => {

      console.log("In second then...");

      return client.sendEmail(emailAddress); // send email to everyone

    })

    .then(() => {

      console.log("Continuing with application logic...");

    })

    .catch((err) => {

      console.error(err.message);

      //catch any unhandled promise exceptions

    });

}


function createUser(username) {

  console.log("In createUser...");

  return client

    .insertUser(username)

    .then((result) => {

      if (!result || !result.user || !result.isPersonaUpdated)

        throw new Error("User insertion failed");

      console.log("User created asynchronously ok...");

    })

    .catch((err) => {

      console.error("Error thrown in createUser...", err.message);

    });

}


const client = {

  insertUser() {

    return Promise.resolve().then(() => ({ user: {}, isPersonaUpdated: true }));

  },

  sendEmail() {

    console.log("Sending email...");

    return Promise.resolve().then(() =>

      console.log("Email sent asynchronously ok...")

    );

  }

};


// Try flipping the value of `shouldCreateUser`

logIn({ shouldCreateUser: true, 

        username: 'Fred Bloggs', 

        emailAddress: 'example@example.com' })

  .then(() => console.log("All done."));


查看完整回答
反对 回复 2023-05-11
  • 1 回答
  • 0 关注
  • 101 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信