NodeJs Hapi Framework Doc Generator无法正常工作

时间:2013-04-03 15:42:06

标签: node.js

我正在使用nodejs hapi框架。到目前为止它一直很好,我想尝试文档生成器。我知道它仍然可能会改变,但他们网站上的代码对我不起作用(http://spumko.github.com/resource/api/#documentation-generator):

// Create Hapi server
var http = new Hapi.Server('0.0.0.0', 8080);

var loutConfig = { plugin: { indexTemplatePath: './templates' } };
http.plugin().require('lout', loutConfig, function () {
    http.start(); 
}); 

这会抛出一个类型错误,抱怨plugin()不是http(hapi服务器)的函数。

有什么想法?

谢谢, 马库斯

1 个答案:

答案 0 :(得分:1)

我认为你需要在引用http.plugin时删除括号,如下所示:

// Create Hapi server
var http = new Hapi.Server('0.0.0.0', 8080);

var loutConfig = { plugin: { indexTemplatePath: './templates' } };
http.plugin.require('lout', loutConfig, function () {
    http.start(); 
});