内容不会在webapp的根目录中呈现

时间:2017-09-30 16:52:46

标签: javascript node.js express mern

我正在构建MERN堆栈应用程序。我尝试使用基本代码在localhost:3000处呈现内容。但内容并不是根本的。当我将路径更改为“/ something”时,内容将在该路径上呈现。所以,我的问题是:为什么内容不会呈现在'/'上?

已编辑。换句话说,如何在localhost:3000中显示“...”?

代码:

app.get('/', (req, res) => {
        res.render('index', {
            content: '...'
        })
    })

enter image description here

enter image description here

0 个答案:

没有答案