2

私は現在Expressで遊んでいて、些細な問題を解決しようとしています(そうあるべきだと私は信じています)。

次のディレクトリ構造があります。

   |-config
   |---config.js
   |---routes.js
   |-server.js
   |-scripts
   |---controllers
   |------controllers.js
   |---directives
   |---filters
   |---services
   |---templates
   |---app.js
   |-views
   |---index.html

私のserver.js

var express = require('express');
var app = express();

require('./config/config.js')(app);
require('./config/routes.js')(app);

app.listen(7777);

私のconfig.js

module.exports = function(app){
    app.set('views', __dirname + '../views');
    app.engine('html', require('ejs').renderFile);
}

私のroutes.js

module.exports = function(app, express){

    app.get('/', function(reg, res){
        res.render('index.html')
    })

    app.use(function(err, req, res, next){
        console.error(err.stack);
        res.send(500, 'Something broke!');
    });
}

そして最後に私のindex.html

<html lang="en">
<head>
    <title></title>
    <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js'>
    </script>
</head>
<body>
    Hello World!!!
</body>
</html>

localhost:7000/ にアクセスすると

私は得る

Error: Failed to lookup view "index.html"
    at Function.app.render (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/application.js:494:17)
    at ServerResponse.res.render (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/response.js:756:7)
    at /Users/abe/github/leap-motion-signature-recognition/config/routes.js:7:13
    at callbacks (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/router/index.js:161:37)
    at param (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/router/index.js:135:11)
    at pass (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/router/index.js:142:5)
    at Router._dispatch (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/router/index.js:170:5)
    at Object.router (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/router/index.js:33:10)
    at next (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/node_modules/connect/lib/proto.js:190:15)
    at Object.expressInit [as handle] (/Users/abe/github/leap-motion-signature-recognition/node_modules/express/lib/middleware.js:30:5)

何故ですか?__dirName set引っ掛けるべきではありませんviews\index.htmlか?

次に、このサーバーを使用して、多くの JavaScript ファイルを含む Angular JS アプリをサポートすることを計画しています。Rails アセット パイプラインに対する Express の回答は何ですか? タグを明示的に設定せずに、ディレクトリ全体を簡単に含めるにはどうscriptすればよいですか?

4

1 に答える 1