I'm using Meteor, what do I need to do to wait for a promise to be returned from an API call?

前端 未结 3 1480
闹比i
闹比i 2020-12-21 23:37
if (Meteor.isClient) {

  Template.hello.events({
    \'click input\': function () {

      //create a new customer
      Meteor.call(\'createCustomer\', function (e         


        
相关标签:
3条回答
  • 2020-12-21 23:59

    I'm assuming balanced.marketplace.customers.create returns a Promises/A+ promise. This is an object with a method .then(fulfillmentCallback, rejectionCallback) - the fulfillmentCallback is called when the operation succeeds, and the rejectionCallback is called if the operation had an error. Here's how you could use Futures to synchronously get the value out of a promise:

    var Future = Npm.require("fibers/future");
    
    function extractFromPromise(promise) {
      var fut = new Future();
      promise.then(function (result) {
        fut["return"](result);
      }, function (error) {
        fut["throw"](error);
      });
      return fut.wait();
    }
    

    Then you can just call balanced.marketplace.customers.create normally (no _wrapAsync) to get a promise, then call extractFromPromise on that promise to get the actual result value. If there's an error, then extractFromPromise will throw an exception.

    By the way, code in if (Meteor.isServer) blocks is still sent to the client (even if the client doesn't run it), so you don't want to put your API key in there. You can put code in the server directory, and then Meteor won't send it to the client at all.

    0 讨论(0)
  • 2020-12-22 00:00

    Update this line

     var customer = Meteor._wrapAsync(balanced.marketplace.customer.create)();
    
    0 讨论(0)
  • 2020-12-22 00:01

    Another approach is to use Futures. I use this a lot on the server side to wait for results to return back to the client.

    Here's a small example of that I use for logins:

    Accounts.login(function (req, user) {
        var Future = Npm.require("fibers/future");
        var fut = new Future();
        HTTP.call("POST", globals.server + 'api/meteor-approvals/token',
            {
                timeout: 10000, followRedirects: true,
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded'
                },
                params: {
                    username: userName,
                    password: req.password
                }},
            function (err, result) {
                if (err) {
                    logger.error("Login error: " + err);
                    fut.throw(err);
                }
                else {
                    fut.return("Success");
                }
            }
        );
        return fut.wait();
    }
    
    0 讨论(0)
提交回复
热议问题