要创建一个带附件的联系我们表单,您可以使用ApostropheCMS的内置表单模块和文件上传字段。下面是一个示例代码,可以帮助您实现这个功能:
首先,您需要在您的ApostropheCMS项目中创建一个新的模块来扩展内置的apostrophe-forms
模块。创建一个新的文件lib/modules/contact-form/index.js
,并添加以下代码:
const forms = require('apostrophe-forms');
module.exports = {
extend: 'apostrophe-forms',
options: {
addFields: [
{
name: 'name',
label: 'Name',
type: 'string',
required: true
},
{
name: 'email',
label: 'Email',
type: 'email',
required: true
},
{
name: 'message',
label: 'Message',
type: 'string',
textarea: true,
required: true
},
{
name: 'attachment',
label: 'Attachment',
type: 'attachment',
required: false
}
],
construct: function(self, options) {
self.on('apostrophe-forms:afterSubmit', async function(req, form) {
// Check if the form submission has an attachment
if (req.files && req.files.attachment) {
// Handle the attachment here, for example, save it to a folder or send it via email
// You can access the file using req.files.attachment.path
}
});
}
}
};
在上面的代码中,我们添加了一个名为attachment
的新字段,并将其类型设置为attachment
,这将允许用户上传文件作为附件。
然后,您需要在您的app.js
文件中将这个新模块添加到您的ApostropheCMS项目中。在app.js
中添加以下代码:
// ...
modules: {
// ...
'contact-form': {},
// ...
}
// ...
最后,您可以在您的模板文件中使用这个新的联系我们表单。例如,在views/pages/contact.html
中,您可以添加以下代码:
{% extends 'layout.html' %}
{% block main %}
Contact Us
{{ apos.area(data.page, 'contactForm', {
type: 'contact-form',
options: {
submitLabel: 'Submit',
redirect: '/thank-you'
}
}) }}
{% endblock %}
在上面的代码中,我们使用apos.area
来渲染表单,并将其类型设置为我们创建的contact-form
模块。我们还可以指定一些额外的选项,如submitLabel
和redirect
。
现在,您的ApostropheCMS项目中的联系我们表单就可以接受附件了。当用户提交表单时,您可以在apostrophe-forms:afterSubmit
事件中处理附件,例如将其保存到文件夹中或通过电子邮件发送。
请注意,上述代码示例仅演示了如何创建带附件的联系我们表单,您可能需要根据您的具体需求进行进一步的自定义和优化。