使用流星 0.5.7 - 遵循缔约方示例 - 创建客户端、服务器文件夹,并将各自的 client.js 和 server.js 文件放置在其中。我已自动发布、删除不安全并添加了电子邮件包。我无法让 Meteor.call 启动,调试表明它被绕过了,我松散地遵循这个 - http://goo.gl/MV26m - 我仍然不明白。
// server.js
Meteor.startup(function () {
process.env.MAIL_URL = '...'; // using mailgun URL
});
Meteor.methods({
call_me: function (options) {
var options = options || {};
Email.send({
from: options.from,
to: options.to,
replyTo: options.from || undefined,
subject: options.subj,
text: options.msg,
});
},
});
// client.js
Template.form.events({
'click .submit' : function (event, template) {
var from = template.find("#from").value;
var to = template.find("#to").value;
var subj = template.find("#subj").value;
var msg = template.find("#msg").value;
var options = { from: from, to: to, subj: subj, msg:msg };
Meteor.call('call_me', options, function(err, data) {
if (err)
console.log(err);
});
}
});
// client.html - the gist of it
<body>
{{> page }}
</body>
<template name="page">
{{> form }}
</template>
<template name="form">
<form ....
</template>
最后,我实际上有 Meteor.methods({...}); 坐在客户端/服务器文件夹之外的 model.js 文件中 - 它仍然没有触发电子邮件,或调用 Meteor.call 方法。我有点想把头放在前面提到的附加链接中的存根概念上,将调用包装在一个函数中并调用它,但我仍然没有得到任何活动。感谢您的任何建议。