25

Using express 3.1.0 I have a super simple form:

<form action="/signup" method="post">
    <div>
        <label>Username:</label>
        <input type="text" name="username"/><br/>
    </div>
    <div>
        <label>Password:</label>
        <input type="password" name="password"/>
    </div>
    <div><input type="submit" value="Sign Up"/></div>
</form>

and in the app.js:

/**
 * Module dependencies.
 */

var express = require('express')
  , routes = require('./routes')
  , fs = require('fs')
  , User = require('./models/User.js')
  , user = require('./routes/user')
  , http = require('http')
  , path = require('path');

var app = express();

app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.set('views', __dirname + '/views');
  app.set('view engine', 'jade');
  app.use(express.favicon());
  app.use(express.logger('dev'));
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(app.router);
  app.use(express.static(path.join(__dirname, 'public')));
});

app.configure('development', function(){
  app.use(express.errorHandler());
});

app.get('/', routes.index);
app.get('/form', function(req, res) {
    fs.readFile('./form.html', function(error, content) {
        if (error) {
            res.writeHead(500);
            res.end();
        }
        else {
            res.writeHead(200, { 'Content-Type': 'text/html' });
            res.end(content, 'utf-8');
        }
    });
});

app.post('/signup', function(req, res) {

    var username = req.body.username;
    var password = req.body.password;
    User.addUser(username, password, function(err, user) {
        if (err) throw err;
        res.redirect('/form');
    });
});

app.get('/users', user.list);


http.createServer(app).listen(app.get('port'), function(){
  console.log("Express server listening on port " + app.get('port'));
});

when trying to post this form i'm getting:

Cannot POST /signup

and in the console:

"NetworkError: 404 Not Found - http://localhost:3000/signup"

what am i missing here?

baba-dev
  • 2,582
  • 6
  • 27
  • 32

3 Answers3

27

Your example works for me. I removed the references to User, user, and routes so that I can run it and the HTTP POST is received and displayed correctly in the console.

app.post('/signup', function(req, res) {
    var username = req.body.username;
    var password = req.body.password;
    console.log("post received: %s %s", username, password);
});

I suspect the error is in your User.addUser() code.

Hector Correa
  • 26,290
  • 8
  • 57
  • 73
5
router.route('/signup')

    // (accessed at POST http://localhost:3000/api/signup)
    .post(function(req, res) {
        var username = req.body.username;
        var password = req.body.password;
        res.json(
            { 
               message: 'signup success',
                username : username,
                 password : password,
            }
        );
    })
    .get(function(req,res){
        res.json({message: 'get request from signup'});
});

// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api
app.use('/api', router);
-4

You can write something like this:

action="http://localhost:3000/sin"
Simon Dragsbæk
  • 2,367
  • 3
  • 30
  • 53
sansan
  • 11
  • 2