Meteor - Meteor.Call里面的帮助器没有返回值给helper

时间:2016-03-13 06:39:07

标签: javascript meteor

在帮助程序中实际从meteor调用返回值的最佳方法是什么。我很难过。出于某种原因,我尝试过这个和其他一些事情是不起作用的:

defaultEmailMsg: function(){
        Meteor.call('getCompanyProfile', companyCode.get(), function (err, res){
            if( res ){
                return res.companyBillingEmailMessage;
            }
        });
    },

0 个答案:

没有答案