Any doc about express-helpers?

时间:2016-08-31 18:55:10

标签: node.js express

I'm new to Node and Express and I would like to make a form with Express-Helpers. Unfortunately, I don't understand how it works and I didn't find any simple doc (official or not) to follow or a tutorial...

If someone could help me to use it, I would really appreciate !

1 个答案:

答案 0 :(得分:0)

从我看到的情况来看,Express-helpers只是帮助您使用EJS构建动态模板。在我看来,似乎没有必要。我强烈建议你开始使用像JADE这样经常使用的模板引擎。他们拥有您需要的所有东西,并且易于理解。

但是既然你问过,这个模板引擎就是这样......

// require your library 
var helper = require('native-view-helpers');

现在这个辅助对象有很多方法/函数可以根据输入返回字符串。例如......

helper.form.begin(); // returns this string '<form action="" method="POST">'

此方法/功能将放置在EJS起始和结束括号内,如此......

<%- helper.form.begin(); %>

当通过EJS渲染时,你会得到

<form action="" method="POST">

这不是最好的例子,但它可能会帮助您了解最新情况。