本文介绍了在没有模板引擎的情况下使用 express的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在不需要jade或ejs等模板引擎的情况下创建express(节点)应用程序.我在大学有一个大型的最后一年项目,我将使用 node、express、socket.io、mongoDB 和 websockets.我也不想因为必须学习模板语言而给自己带来负担!

Is it possible to create an express (node) application without the need for a template engine such as jade or ejs. I've got a large final year project at university and i'm going to be using node, express, socket.io, mongoDB and websockets. I don't want to burden myself with having to learn a templating language too!

默认快递使用翡翠-t, --template 添加模板支持 (jade|ejs).默认=玉

By default express uses jade-t, --template add template support (jade|ejs). default=jade

推荐答案

是的.你可以只使用 HTML.或者只是使用 EJS.EJS 是 HTML 的超集.

Yes it is. You can just use HTML. Or just use EJS. EJS is a superset of HTML.

我不想让自己也不得不学习模板语言!

您可以在一天内学会一门模板语言.它真的会帮助你.去做就对了.值得.

You can learn a templating language in a day. It's really going to help you. Just do it. It's worth it.

这篇关于在没有模板引擎的情况下使用 express的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 12:49