Expressjs POST error: TypeError: Cannot read property 'title' of undefined Expressjs POST error: TypeError: Cannot read property 'title' of undefined express express

Expressjs POST error: TypeError: Cannot read property 'title' of undefined


My hunch, try moving your app.configure statement before your app.get and app.post. The bodyParser middleware isn't being called. Also, to be safe add the enctype to the form, shouldn't be necessary, but regardless: application/x-www-form-urlencoded.

Let me know...