2017-11-16 15 views
1

사용 NodeJS, 고속 및 Sequilize,SequelizeInstance 개체 익스프레스 핸들 바보기에서 렌더링되지 않는 (NodeJS, 고속)

내가보기에 렌더링하고 [오브젝트 SequelizeInstance : 도도] 실제 데이터 인스턴스 값으로 반대로 고해상도를 호출 할 때 .render(), 그러나 .send (아래 주석 줄 참조)에서 호출 할 때 데이터 인스턴스 값이보기로 전송됩니다.

exports.test_todo_view = function(req, res) { 
return Todo 
    .findAll({ 
     //attributes: ['id'] //select fields 
     }) 
    //.then((todos) => res.status(200).send(todos)) 
    .then((todos) => res.render('test/test_view', {layout: 'ca_layout.handlebars', test_data: todos})) 
.catch((error) => res.status(400).send(error)); 
} 

출력은 데이터베이스의 각 항목에 대해 [개체 SequelizeInstance : Todo]입니다.

누구든지 조언 할 수 있습니까? 즉, .send (todos)를 사용할 때 데이터 [- "{id": 1, "title": "fasdfsd", "createdAt": "2017-11-15" 보여진 바와 같이.

아래에서보기를 호출하고 있습니다.

app.get('/test/view', authCarePlan.test_todo_view); 

내 .handlebars 파일 내가 쿼리의 출력은 다음과 같은 설정이 .handlebars보기에서 요구되었다 test_data

답변

0

로를 통해오고 싶어이

<div>test_data:{{test_data}}</div> 

과 같은

{{#test_data}} 
{{title}} 
{{/test_data}} 

여기서 test_data는 변수 자리 표시 자의 이름이고 title은 필드의 이름입니다. 그 안에.