我目前没有获得以下函数的任何返回值,尽管有人建议这是同步调用。如果我异步执行,(即函数(错误,等等){console.log(blah);}),我会得到正确的预期输出。
Template.file_nav.files = function(path) {
path = path || "/";
var x = Meteor.call('get_files', path);
return x;
}
以下是“get_files”方法的服务器端代码:
Meteor.methods( {
get_files : function get_files(path) {
return [
{ "name" : " bob" }, { "name" : "alice" },
];
}
此外,这是正确调用的HTML部分,如果它是相关的:
<template name="file_nav">
<div>
<ul style="dirnav">
{{#each files}}
{{#if isDirectory this}}
<li><a href="javascript:void(0)" onclick="get_directory('{{name}}')">{{
{{else}}
<li><a href="javascript:void(0)" onclick="get_file('{{name}}')">{{name}
{{/if}}
{{/each}}
</ul>
</div>
</template>
答案 0 :(得分:2)
如果您阅读相关文档的正文(http://docs.meteor.com/#meteor_call),您会看到它说:
“在客户端上,如果你没有传递一个回调并且你不在存根中,那么调用将返回undefined,你将无法获得方法的返回值”
所以你所看到的行为就是你应该期待的。我认为这里的文档可能会更加清晰。