为了账号安全,请及时绑定邮箱和手机立即绑定

首页没有样式,其他页面都有

index.jade如下:

extends ../layout

block content
  .container
    .row
      each item in movies
        .col-md-2
          .thumbnail
            a(href="/movie/#{item._id}")
              img(src="#{item.poster}",alt="#{item.title}")
            .caption
              h3 #{title}
              p: a.btn.btn-primary(href="/movie/#{item._id}",role="button")
                观看预告片

app.js中相关的:

//index page
app.get('/', function (req, res) {
  res.render('index', {
    title: 'movieWeb 首页',
    movies: [{
      title: '悟空传',
      _id: 1,
      poster: 'https://movie.douban.com/photos/photo/2475055266/#title-anchor'
    },
    {
      title: '悟空传',
      _id: 2,
      poster: 'https://movie.douban.com/photos/photo/2475055266/#title-anchor'
    }]
  })
})

首页只能显示一个title,哪里出错了啊??

正在回答

1 回答

你看一下 你的目录结构正确嘛?是不是在layout.jade的平级还有一个index.jade的文件,然后覆盖了你pages里的index.jade文件。。。我刚开始就是酱的。。。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
node+mongodb 建站攻略(一期)
  • 参与学习       91860    人
  • 解答问题       889    个

带你完整实现一个从前端到后端的项目,初中级前端开发工程师必学课程

进入课程

首页没有样式,其他页面都有

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信