node.js - express 4.x版本post请求
怪我咯
怪我咯 2017-04-17 16:28:55
0
2
364

最近才开始看node,看教材(一个上传图片的表单)的时候遇到了一个问题。
表单模板(upload.ejs)

<h1><%= title %></h1>
<form action="post" enctype="multipart/form-data">
    <input type="text" name="photo[name]" placeholder="your name">
    <input type="file" name="photo[image]"/>
    <input type="submit" value="upload"/>
</form>

配置路由

教材(photos.js):

exports.form = function(req, res) {
    res.render('photos/upload', {
        title: 'photo uploads'
    });
}

教材(app.js):

app.get('/upload', photos.form);
app.post('/upload', photos.submit(app.get('photo')));

自己(photos.js)

const express = require('express');
const router = express.Router();

router
    .get('/upload', (req, res, next) => {
        res.render('photos/upload',{
            title: 'photo uploads'
        });
    })
    //.post('./upload', photos.submit(router.get('photo')));

module.exports = router;

自己(app.js)

var photos = require('./routes/photos');

app.use('/', photos);

//处理照片提交代码
...

在注释掉post的时候,localhost:~/upload是没有问题的,可以看到上传表单的页面,但是去掉post前面的注释的时候,报错提示submit不是一个函数,不知道这个地方怎么写.

app.post('/upload', photos.submit(app.get('photo')));

意思是点击submit后,路由定义到photo页面吧

怪我咯
怪我咯

走同样的路,发现不同的人生

répondre à tous(2)
大家讲道理

你在photos里面定义了submit这个函数了吗?

伊谢尔伦

post的链接没有[.]吧?

router
.get('/upload', (req, res, next) => {
    res.render('photos/upload',{
        title: 'photo uploads'
    });
})
.post('/upload', photos.submit(router.get('photo')));
//.post('./upload', photos.submit(router.get('photo')));

exports.form还是exports.from?

exports.from = function(req, res) {
    res.render('photos/upload', {
        title: 'photo uploads'
    });
}

soonfy

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal