私の履歴書のウェブサイトはほぼ完了しています。私は平文のメールを私に送るべき「連絡先」フォームを完成させています。ここで必要に応じてNodemailerエラーが発生する
は、ジェイドで、次のようになります。私は私のserver.js
でPOST
をキャッチどこ
div.contact-email-box
form(id='contact-form' action='/' method='post')
h3 Contact me
div
label
span Name:
input(placeholder='e.g: Mark' type='text' tabindex='1' required autofocus)
div
label
span Email:
input(placeholder='e.g: [email protected]' type='email' tabindex='2' required)
div
label
span Message:
textarea(tabindex='3' required)
div
button(name='Submit' type='submit' id='contact-submit') Send Email
そして、ここです:
var express = require('express')
, app = express()
var nodemailer = require('nodemailer')
app.post('/', function(req, res) {
})
あなたはそれが何もしない見ることができ、まだ私が受け取ると次のエラー:
/home/kade_c/website/node_modules/nodemailer/lib/mailer/index.js:31 compile: [(...args) => this._convertDataImages(...args)], ^^^
SyntaxError: Unexpected token ...
これは、I 01私のnode_modules
に正しくインストールされていますが、です。
これは既知のバグですか?どうすれば修正できますか?