标签:
分配给name一个value,并将name作为app settings table的一个属性。
使用app.set(‘foo‘, true)
相当于调用 app.enable(‘foo‘)
。相似的,使用 app.set(‘foo‘, false)
相当于调用 app.disable(‘foo‘)。
通过使用app.get()重新得到该值。
将给定的模板引擎的回调函数注册为ext。
默认的,Express会基于文件的扩展名来 require()
模板引擎。 比如,如果你渲染 “foo.jade” 文件, Express invokes the following internally, and caches the require()
on subsequent calls to increase performance.
标签:
原文地址:http://www.cnblogs.com/A-dam/p/5052705.html