0

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

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

这是所有代码:

我的.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;
}
});

包.js

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

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

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

智能.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;
}
});
});
}

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

4

1 回答 1

1

这里有一个问题:

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

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

于 2013-11-14T14:51:05.837 回答