我添加了meteorhacks:npm包并使用以下命令安装了fbgraph:
$ npm install fbgraph
我的服务器端代码现在看起来像这样:
function Facebook(accessToken) {
this.fb = Meteor.npmRequire('fbgraph');
this.accessToken = accessToken;
this.fb.setAccessToken(this.accessToken);
this.options = {
timeout: 3000,
pool: {maxSockets: Infinity},
headers: {connection: "keep-alive"}
}
this.fb.setOptions(this.options);
}
Facebook.prototype.query = function(query, method) {
var self = this;
var method = (typeof method === 'undefined') ? 'get' : method;
var data = Meteor.sync(function(done) {
self.fb[method](query, function(err, res) {
done(null, res);
});
});
return data.result;
}
Facebook.prototype.getUserData = function() {
return this.query('me');
}
Facebook.prototype.getFriendsData = function() {
return this.query('/me/friendlists');
}
Meteor.methods({
getUserData: function() {
var fb = new Facebook(Meteor.user().services.facebook.accessToken);
var data = fb.getUserData();
return data;
},
getFriendsData: function() {
var fb = new Facebook(Meteor.user().services.facebook.accessToken);
var data = fb.getFriendsData();
return data;
}
});
Meteor.publish("getUserData", function () {
return Meteor.users.find({_id: this.userId});
});
Meteor.publish("getFriendsData", function(){
return Meteor.users.find({_id: this.userId});
});
我的config.js也按顺序排列:
Accounts.ui.config({
passwordSignupFields: "USERNAME_ONLY",
requestPermissions: {
facebook: ['email', 'user_friends'],
}
});
在客户端,我有一个模板:
<template name="friends">
<div class="container">
{{friendlist}}
</div>
</template>
我试图用'
调用'getFriendsList'Template.friends.helpers({
friendlist: function() {
Meteor.call("getFriendsData");
}
});
最后,我的packages.json看起来像这样:
{
"fbgraph": "1.1.0"
}
当我尝试运行我的应用时,出现如下错误:
Exception while simulating the effect of invoking 'getFriendsData
TypeError: Meteor.npmRequire is not a function
如果这是一个愚蠢的问题我很抱歉,我对Meteor来说还不够。而我为我的生活无法想象这一个。我真的很感激一些帮助。
答案 0 :(得分:1)
您需要添加npm模块。使用meteorhacks:npm模块,npm模块的集成不是meteor的原生。使用以下命令安装它:
meteor add meteorhacks:npm
每当您通过npm添加非meteor包时,您将必须使用Meteor.npmRequire()
。如果您通过meteor add foobar
安装,则无需使用该软件包。
如果您遇到问题,请尝试使用Meteor 1.2:
rm -rf packages/npm-container
meteor remove npm-container
meteor update meteorhacks:npm
此外,您的模板需要修复,因为它目前不会根据您的Meteor.call()进行更新。如果你使用onCreated()或onRendered(),你可以触发Meteor.call()并设置一个会话变量,供你的一个助手用来填充你的模板:
Template.friends.onCreated(function() {
Meteor.call("getFriendsData", function(error, friends) {
if (error) {
console.log(error);
} else {
Session.set('friends', friends);
}
});
});
Template.friends.helpers({
friendlist: function() {
return Session.get('friends');
}
});
如果您没有收到任何回复,请更改此项以检查您是否在服务器端获取数据:
getFriendsData: function() {
console.log(Meteor.user().services.facebook.accessToken);
var fb = new Facebook(Meteor.user().services.facebook.accessToken);
var data = fb.getFriendsData();
console.log(data);
return data;
}