Strapi beta 的结构改变了插件的架构方式,删除了 /plugins 目录,插件现在保存在 /node_modules 目录中。我正在尝试编写一些自定义代码以在下订单后发送确认电子邮件。在以前的 Strapi 版本中,电子邮件插件目录在这里:
/server/plugins/email/controllers
在此目录中,编写了以下代码,该代码在 SEND 控制器中以 alpha 运行:
我们对此进行了注释:
// await.strapi.plugins.email.services.send(options, config);
然后此代码用于曾经存在的电子邮件控制器的 module.exports 内的 SEND 控制器...
let options = ctx.request.body;
try {
// send email to user
await strapi.plugins['email'].services.email.send({
to: options.to,
from: 'test@example.com',
subject: options.subject,
text: options.text,
html: options.html
})
} catch (err) {
return ctx.badRequest(null, err);
}
// Send 200 'ok;
ctx.send({});
好的,那是服务器端的 Strapi Send 控制器......现在在订单Promise返回后的客户端上,我们触发另一个命中 Strapi API 的确认电子邮件的Promise:
await.strapi.request('POST', '/email', {
data: {
to: confirmationEmailAdress,
subject: "Order Confirmation',
text: 'Your order has been processed',
html: '<b>Expect your stuff to arrive broken. Thanks.</b>'
}
});
简而言之,现在的问题是 Strapi 的架构发生了变化,不确定将我的服务器代码放在哪里,以及用于调用以触发电子邮件的 API url。我在 Strapi 中设置了带有 API 密钥、权限和权限的 SendGrid,一切都很好,只是一个问题,既然 Beta 架构已从 alpha 更改,那么放置此代码的正确位置在哪里?
* 更新代码 *
根据吉姆的建议,我现在在 /extensions 文件夹中创建了一个电子邮件控制器,如下所示:
/server/extensions/email/controllers/Email.js
电子邮件.js
'use strict';
module.exports = {
send: async (ctx) => {
let options = ctx.request.body;
try {
//Send email to the user
await strapi.plugins['email'].services.email.send({
to: options.to,
from: 'test@example.com',
subject: options.subject,
text: options.text,
html: options.html
});
} catch (err) {
return ctx.badRequest(null, err);
}
}
}
现在,在客户端中,我使用 React 的 promise 来调用我们的电子邮件扩展,如下所示:
await strapi.request('POST', '/email', {
data: {
to: confirmationEmailAddress,
subject: `Order Confirmation - South of Sleep ${new Date(Date.now())}`,
text: 'Your order has been processed',
html: '<bold>Except your stuff to be broken upon arriving</bold>'
}
});
有用!电子邮件是从 Strapi 发送的,我看到控制器中的信息是电子邮件的一部分。问题?
客户端中的 promise 是 try/catch 的一部分,在触发电子邮件后,它返回 404,因为它无法/email
作为路由找到。所以,我不明白为什么它可以工作并找到电子邮件的扩展控制器,触发电子邮件但返回 404 路由。
我错误地从客户端调用了扩展控制器。