nodejs express mixin
-
NodeJS / pug에서 mixin 사용Programming/NodeJS 2020. 1. 14. 18:39
pug 란? node js 프레임워크인 express에서 view 를 담당하는 템플릿 언어 JS방식으로 보다 쉽게 html을 만들 수 있다. mixin 란? 웹사이트에서 계속 반복되는 코드를 복사+붙여넣기 하지 않고 재활용하는 방법 각각 다른 정보를 가지지만 같은 구조를 가지는 템플릿에서 사용 mixin 사용 mixin은 pug의 함수의 일종 mixin은 함수의 이름이 있고, 인자가 필요 //dbtest.js export const test = [ { title: 'test title1', content: 'test content1' }, { title: 'test title2', content: 'test content2' }, { title: 'test title3', content: 'test co..