将数据从服务器块传递到客户端块,并在Meteor中调用第三方包

时间:2013-11-14 12:58:52

标签: meteor

我无法将数据从服务器块传递到客户端块。我也不确定我称之为自创包的方式是对还是错。 这是我的文件夹结构:

x/packages/me.js
x/packages/package.js
x/packages/smart.json
x/x.css
x/x.html
x/x.js 

以下是所有代码:

me.js

Meteor.methods({
getTweets: function () {
var key = "my api key";
var response = Meteor.http.call( "POST", "http://localhost:8000/users.json",
{ params: { appkey: key ,uid: "example" }});
return response.content;
}
});

package.js

Package.describe({
summary: "summary etc"
});

Package.on_use(function (api){
api.use(["http"],["server"]);

api.add_files("me.js","server");
});

smart.json

{
"name": "name example",
"description": "desc",
"homepage":"as",
"author" : "xyz",
"version" : "0.1",
"packages": {}
}

x.html

<head>
<title>x</title>
</head>

<body>
{{> hello}}
</body>

<template name="hello">
<h1>Hello World!</h1>
{{greeting}}
<input type="button" value="Click" />
</template>

x.js

if (Meteor.isClient) {
Template.hello.greeting = function () {
return "Welcome to y.";
};

Template.hello.events({
'click input' : function () {
// template data, if any, is available in 'this'
Meteor.call("hiren",function (err, data) {
console.log(data);
if(err) throw err;
});
}
});
}

if (Meteor.isServer) {
Meteor.call("getTweets",function (err, data) {
Meteor.methods({
"hiren":function(){
return data;
}
});
});
}

当我点击“点击”按钮时,它只显示未定义的

1 个答案:

答案 0 :(得分:1)

这里有一个问题:

if (Meteor.isServer) {
  Meteor.call("getTweets",function (err, data) {
    Meteor.methods({
      "hiren": function(){
        return data;
      },
    });
  });
}

您可以在getTweets方法的回调函数中定义方法。这可能不是您想要做的,通常那些是在服务器块中定义的,因为您希望拥有可预测的API。我想不出你做这样的事情的理由,但即使有一个 - 你没有调用getTweets函数。所以我猜这是一个错误。