简体   繁体   中英

How to pass a object from sequelize to a handlebars partial?

i am using handlebars version 4.7.6 and sequelize 5.21.5 to make a blog app. I need to pass a post object ( post.id, post.title and post.content ) that i get with sequelize to a form, but the form is a partial. I try to use

{{> formPost post=post }}

and

{{> formPost post }}

but its dont work. the form is displayed and single variables like

{{> formPost myvar="blablabla" }}

works fine.

How is the correct way?

Well, i discover that the sequelize has a security block on object. The way to pass sequelize objects to handlebars is creating a json object from sequelize object.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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