次の2つの部分で構成される質問があります。
ありがとう、
TM
私の意見では、サービスとは、アプリの複数の場所で必要なロジックです。たとえば、メールサービス。以下は sails-wiki githubページから直接取得されています。
// EmailService.js - in api/services
exports.sendInviteEmail = function(options) {
var opts = {"type":"messages","call":"send","message":
{
"subject": "YourIn!",
"from_email": "[email protected]",
"from_name": "AmazingStartupApp",
"to":[
{"email": options.email, "name": options.name}
],
"text": "Dear "+options.name+",\nYou're in the Beta! Click <insert link> to verify your account"
}
};
myEmailSendingLibrary.send(opts);
};
配線は帆によって行われます:
// Somewhere in a conroller
EmailService.sendInviteEmail({email: '[email protected]', name: 'test'});