KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-handlebars
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-handlebars相关的知识,希望对你有一定的参考价值。
koahub-handlebars
koahub-handlebars
koahub handlebars templates
Installation
Use with koa
Registering Helpers
Helpers are registered using the #registerHelper method. Here is an example using the default instance (helper stolen from official Handlebars docs:
Your helper is then accessible in all views by using, {{link "Google" "http://google.com"}}
The registerHelper
, Utils
, and SafeString
methods all proxy to an internal Handlebars instance. If passing an alternative instance of Handlebars to the middleware configurator, make sure to do so before registering helpers via the koahub-handlebars proxy of the above functions, or just register your helpers directly via your Handlebars instance.
You can also access the current Koa context in your helper. If you want to have a helper that outputs the current URL, you could write a helper like the following and call it in any template as {{requestURL}}
.
Registering Partials
The simple way to register partials is to stick them all in a directory, and pass the partialsPath
option when generating the middleware. Say your views are in ./views
, and your partials are in ./views/partials
. Configuring the middleware via
will cause them to be automatically registered. Alternatively, you may register partials one at a time by calling hbs.registerPartial
which proxies to the cached handlebars #registerPartial
method.
Layouts
Passing defaultLayout
with the a layout name will cause all templates to be inserted into the {{{body}}}
expression of the layout. This might look like the following.
In addition to, or alternatively, you may specify a layout to render a template into. Simply specify {{!< layoutName }}
somewhere in your template. koahub-handlebars will load your layout from layoutsPath
if defined, or from viewPath
otherwise.
At this time, only a single content block ({{{body}}}
) is supported.
Options
The plan for koahub-handlebars is to offer identical functionality as koa-hbs (eventaully). These options are supported now.
viewPath
: [required] Full path from which to load templates (Array|String
)handlebars
: Pass your own instance of handlebarstemplateOptions
: Hash of handlebars options to pass totemplate()
extname
: Alter the default template extension (default:‘.html‘
)partialsPath
: Full path to partials directory (Array|String
)defaultLayout
: Name of the default layoutlayoutsPath
: Full path to layouts directory (String
)disableCache
: Disable template caching (default:‘.true‘
)
Locals
Application local variables ([this.state](https://github.com/koajs/koa/blob/master/docs/api/context.md#ctxstate)
) are provided to all templates rendered within the application.
The state object is a javascript Object. The properties added to it will be exposed as local variables within your views.
Thanks
Differents
- Configuration file incremental changes
- Modify some of the features and the default configuration
- ...
源码详情:http://js.koahub.com
以上是关于KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-handlebars的主要内容,如果未能解决你的问题,请参考以下文章
KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-skip
KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-body-res
KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架之koahub-loader
基于 Koa平台Node.js开发的KoaHub.js连接打印机的代码