繁体   English   中英

为什么我的变量在模板中未定义?

[英]Why is my variable undefined in the template?

我得到这个错误

    121|         <div class="container-fluid bg-dark text-white" style="margin-top: 2%;">
    122|
 >> 123|           <h1 class="mb-1 text-center"><%= article.title %> </h1>
    124|         </div>
    125|       <div class="container-fluid blog-footer">
    126|         <p>Simqle Team |  Bütün Hakları Saklıdır | <a href="https://simqles.github.io/">Hakkımızda </a><b> | </b><a href="https://simqles.github.io">Nedim Talha</a>.</p>

article is not defined

在这段代码上

const express = require('express');
const router = express.Router();
const Article = require('../models/article');

router.get('/new', (req, res) => {
    res.render('articles/new', { article: new Article() })
})
router.get('/:id', async(req, res) => {
    const article = await Article.findById(req.params.id)
    if(article == null) res.redirect('/')
    res.render('articles/show')
})
router.post('/', async(req, res) => {
    var article = new Article({
        title: req.body.title,
        description: req.body.description,
        markdown: req.body.markdown
    })

    try {
       article = await article.save()
       res.redirect(`/articles/${article.id}`)
    } catch(err) {
        res.render('articles/new', { article: article })
    }
})
module.exports = router

我无法解决这个错误

您没有在渲染中传递文章

应该是这样的

res.render('articles/show', { article })

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM