码迷,mamicode.com
首页 > Web开发 > 详细

KoaHub.js:使用ES6/7特性开发Node.js框架(2)

时间:2016-09-22 19:47:54      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:

 

    }
 
    isLogin() {
        console.log(‘base isLogin‘);
    }
}
 
//index controller, admin/controller/index.controller.js
import base from "./base.controller";
export default class extends base{
 
    constructor() {
        super();
        console.log(‘index constructor‘);
    }
 
    index() {
        super.isLogin();
        super.json({msg: ‘this is a msg‘});
        console.log(‘index index‘);
    }
}

项目中可以使用 ES6/7 里的所有特性,借助 Babel 编译,可以稳定运行在 >=0.12.0 的 Node.js 环境中。

组件3:koahub-yilianyun

 

微信易联云打印机接口

koahub-yilianyun易联云打印机node接口

$ npm install koahub-yilianyun
var printer = require(‘koahub-yilianyun‘);var result = yield printer({    "partner": 914,//用户id(管理中心系统集成里获取)     "apikey": "3785b31b2c84f3c47e51a6c4481f8a5fc2eea72a",//apikey(管理中心系统集成里获取)     "machine_code": "3400453726",//打印机终端号     "msign": "gn5p5zk585b6",//打印机终端密钥     "time": parseInt(new Date().getTime() / 1000),//当前时间戳(服务器用于验证超时)     "content": ‘2222‘//需要传输打印的内容数据 });

KoaHub.js -- 基于 Koa.js 平台的 Node.js web 快速开发框架

官网:http://js.koahub.com

技术分享

组件4:koahub-handlebars

 

koahub-handlebars

koahub handlebars templates

$ npm install koahub-handlebars
 var koa = require(‘koa‘); var hbs = require(‘koahub-handlebars‘);  var app = koa();  // koahub-handlebars is middleware. `use` it before you want to render a view  app.use(hbs.middleware({   viewPath: __dirname + ‘/views‘ }));  // Render is attached to the koa context. Call `this.render` in your middleware  // to attach rendered html to the koa response body.  app.use(function *() {   yield this.render(‘index‘, {title: ‘koahub-handlebars‘}); })  app.listen(3000);

Helpers are registered using the #registerHelper method. Here is an example using the default instance (helper stolen from official Handlebars docs:

hbs = require(‘koahub-handlebars‘); hbs.registerHelper(‘link‘, function(text, url) {  text = hbs.Utils.escapeExpression(text);  url  = hbs.Utils.escapeExpression(url);   var result = ‘<a href="‘ + url + ‘">‘ + text + ‘</a>‘;   return new hbs.SafeString(result);});

Your helper is then accessible in all views by using, {{link "Google" "http://google.com"}}

The registerHelperUtils, 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}}.

hbs.registerHelper(‘requestURL‘, function() {  var url = hbs.templateOptions.data.koa.request.url;  return url;});

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

app.use(hbs.middleware({  viewPath: __dirname + ‘/views‘,  partialsPath: __dirname + ‘/views/partials‘}));

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.

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.

<!DOCTYPE html><html><head>  <title>{{title}}</title></head><body>  {{{body}}}</body></html>

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.

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 handlebars

  • templateOptions: Hash of handlebars options to pass to template()

  • extname: Alter the default template extension (default: ‘.html‘)

  • partialsPath: Full path to partials directory (Array|String)

  • defaultLayout: Name of the default layout

  • layoutsPath: Full path to layouts directory (String)

  • disableCache: Disable template caching (default: ‘.true‘)

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.

app.use(function *(next) {  this.state.title = ‘My App‘;  this.state.email = ‘me@myapp.com‘;  yield next;});

The state object is a JavaScript Object. The properties added to it will be exposed as local variables within your views.

<title>{{title}}</title> <p>Contact : {{email}}</p>

koa-hbs

  1. Configuration file incremental changes

  2. Modify some of the features and the default configuration

  3. ...

 

官网:http://js.koahub.com

技术分享

 

KoaHub.js:使用ES6/7特性开发Node.js框架(2)

标签:

原文地址:http://www.cnblogs.com/jycxqe/p/5897439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!