DEV Community

Cory Allen
Cory Allen

Posted on

1 1

Sequelize, Express.js, & Handlebars.js being turds?

My brain is sizzling, either I am overlooking a tiny detail or this is supposed to work and doesn't for whatever reason. Just trying to render by findAll() query to the page using handlebars. Here's what I have.

Controller:

const library = require('../models/Library');
exports.manage_library = (req, res) => {
    Library.findAll()
        .then(function(data) {
            res.render('manage-library', {
                title: "Manage Website",
                user: req.user,
                data: data
            })
        });
}
Enter fullscreen mode Exit fullscreen mode

View:

                    {{#each data}}
                        <div class="list-group-item d-flex justify-content-between">
                        <div><strong>{{this.name}}</strong></div>
                        <div>
                            <a href="/edit-category/{{this.id}}" class="btn btn-sm btn-warning"><i class="bi bi-pencil"></i></a>
                            <a href="/delete-category/{{this.id}}" class="btn btn-sm btn-danger"><i class="bi bi-trash3"></i></a>
                        </div>
                    </div>
                    {{/each}}
Enter fullscreen mode Exit fullscreen mode

I am new to Node & Express, this is my first serious project so forgive me if I am overlooking something minor. Basically, the above code renders the appripriate amount of list-group-item but I cannot display actual data within the list-group-item.

What the glorp am I doing wrong?! 👽

Image of Datadog

How to Diagram Your Cloud Architecture

Cloud architecture diagrams provide critical visibility into the resources in your environment and how they’re connected. In our latest eBook, AWS Solution Architects Jason Mimick and James Wenzel walk through best practices on how to build effective and professional diagrams.

Download the Free eBook

Top comments (1)

Collapse
 
constmedic profile image
Cory Allen •

SOLVED:

Adding raw: true; to the query fixed the issue.

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more