1
我安裝了meteorhacks/npm,以便在我的Meteor應用程序中使用Wordcount包。如何使用meteorhacks調用此wordcount函數:npm包?
但是,我不能讓我的方法工作。
客戶
getWordcount = function getWordcount(words, callback) {
Meteor.call('getWordcount', words, callback);
}
console.log(getWordcount('hello world')); // testing
服務器
Meteor.methods({
'getWordcount': function getWordcount(words) {
var WordcountApi = Meteor.npmRequire('wordcount');
var wordcount = new WordcountApi({
version: "1.1.1"
});
var words = Async.runSync(function(done) {
wordcount.words, function(err, data) {
done(null, data);
}
});
return words.result;
}
});
我回來在我的控制檯發出錯誤訊息:
「錯誤調用方法 'getWordcount':內部服務器錯誤[500 ]「