Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKyle Johnson
33,528 PointsPass the posts object to your template, naming it "posts".
I think this code challenge is incorrect but maybe I'm missing something. Here is my code.
const express = require('express');
const posts = require('./mock/posts.json');
const app = express();
app.set('view engine', 'pug');
app.set('views', __dirname + '/templates');
app.get('/', (req, res) => {
res.render('main', {posts: "posts"});
});
app.listen(3000, () => {
console.log("The frontend server is running on port 3000!");
});
6 Answers
Kyle Johnson
33,528 PointsSo it looks like the correct answer is:
res.render('main', {posts});
Jelena Feliciano
Full Stack JavaScript Techdegree Student 12,729 PointsDidn't work for me.
Shyam Gupta
7,757 PointsYou need to pass the 'variable' and not the string "posts", below is what is needed:
res.render('main', {posts: posts});
Seth Kroger
56,413 PointsYou should be passing the variable posts
defined at the top, not the string "posts".
Kyle Johnson
33,528 PointsWith the below code, the code challenge states the quoted below. I feel like this needs to be updated since that does help.
Bummer! missing ) after argument list.
res.render('main', post: "posts");
L Haney
Front End Web Development Techdegree Student 10,263 PointsHere is what I did:
res.render('main', {posts: posts});
John Lukacs
26,806 PointsNothing is working can you post your code that worked to pass the challenge
John Lukacs
26,806 Pointsif you look at this line of code should there not be an extra bracket added
~app.get('/', (req, res)~
Benny Ogidan
17,948 PointsBenny Ogidan
17,948 PointsRemove the semi colon as we are taking the variable from app.js