Multiple View paths on Node.js + Express

前端 未结 5 1586
一向
一向 2020-12-02 15:25

I\'m writing a CMS on Node.js with Express Framework. On my CMS I have several modules for users, pages, etc.

I want that each module will have his

相关标签:
5条回答
  • 2020-12-02 15:53

    Here's a solution for Express 3.x. It monkey-patches express 3.x's "View" object to do the same lookup trick as @ShadowCloud's solution above. Unfortunately, the path lookup for the View object is less clean, since 3.x doesn't expose it to express -- so you have to dig into the bowels of node_modules.

    function enable_multiple_view_folders() {
        // Monkey-patch express to accept multiple paths for looking up views.
        // this path may change depending on your setup.
        var View = require("./node_modules/express/lib/view"),
            lookup_proxy = View.prototype.lookup;
    
        View.prototype.lookup = function(viewName) {
            var context, match;
            if (this.root instanceof Array) {
                for (var i = 0; i < this.root.length; i++) {
                    context = {root: this.root[i]};
                    match = lookup_proxy.call(context, viewName);
                    if (match) {
                        return match;
                    }
                }
                return null;
            }
            return lookup_proxy.call(this, viewName);
        };
    }
    
    enable_multiple_view_folders();
    
    0 讨论(0)
  • 2020-12-02 16:01

    You can however, put all the view files inside the 'view' folder, but separate each module's view into it's own folders inside the 'view' folder. So, the structure is something like this :

    views  
    --moduleA    
    --moduleB  
    ----submoduleB1  
    ----submoduleB2  
    --moduleC  
    

    Set the view files like usual :

    app.set('views', './views');
    

    And when render for each module, include the module's name :

    res.render('moduleA/index', ...);
    

    or even submodule's name :

    res.render('moduleB/submoduleB1/index', ...);
    

    This solution is also works in express before version 4.x,

    0 讨论(0)
  • 2020-12-02 16:05

    In addition to @user85461 answer, the require view part did not work for me. What i did: removed the path stuff and moved it all to a module i could require, patch.ViewEnableMultiFolders.js (Works with current express):

    function ViewEnableMultiFolders(app) {
        // Monkey-patch express to accept multiple paths for looking up views.
        // this path may change depending on your setup.
        var lookup_proxy = app.get('view').prototype.lookup;
    
        app.get('view').prototype.lookup = function(viewName) {
            var context, match;
            if (this.root instanceof Array) {
                for (var i = 0; i < this.root.length; i++) {
                    context = {root: this.root[i]};
                    match = lookup_proxy.call(context, viewName);
                    if (match) {
                        return match;
                    }
                }
                return null;
            }
            return lookup_proxy.call(this, viewName);
        };
    }
    
    module.exports.ViewEnableMultiFolders = ViewEnableMultiFolders;
    

    and used:

    var Patch = require('patch.ViewEnableMultiFolders.js');
    Patch.ViewEnableMultiFolders(app);
    app.set('views', ['./htdocs/views', '/htdocs/tpls']);
    
    0 讨论(0)
  • 2020-12-02 16:05

    Install glob npm install glob

    If you have a views directory that looks something like:

    views
    ├── 404.ejs
    ├── home.ejs
    ├── includes
    │   ├── header.ejs
    │   └── footer.ejs
    ├── post
    │   ├── create.ejs
    │   └── edit.ejs
    └── profile.ejs
    
    

    You can use this glob function to return an array of subdirectories in the views directory (add the path.substring to remove the trailing /)

    let viewPaths = glob.sync('views/**/').map(path => {
        return path.substring(0, path.length - 1)
    })
    
    
    console.log(viewPaths)
    >> ['views', 'views/post', 'views/includes']
    

    So now you can set

    app.set('views', viewPaths)
    

    and now you can use

    res.render('404')
    res.render('home')
    res.render('post/edit')
    res.render('post/create')
    
    0 讨论(0)
  • 2020-12-02 16:11

    Last Update

    The multiple view folders feature is supported by the framework since Express 4.10

    Just pass an array of locations to the views property, like so.

    app.set('views', [__dirname + '/viewsFolder1', __dirname + '/viewsFolder2']);
    

    Express 2.0

    As far as I know express doesn't support multiple view paths or namespaces at the moment (like the static middleware do)

    But you can modify the lookup logic yourself so that it works the way you want, for example:

    function enableMultipleViewFolders(express) {
        // proxy function to the default view lookup
        var lookupProxy = express.view.lookup;
    
        express.view.lookup = function (view, options) {
            if (options.root instanceof Array) {
                // clones the options object
                var opts = {};
                for (var key in options) opts[key] = options[key];
    
                // loops through the paths and tries to match the view
                var matchedView = null,
                    roots = opts.root;
                for (var i=0; i<roots.length; i++) {
                    opts.root = roots[i];
                    matchedView = lookupProxy.call(this, view, opts);
                    if (matchedView.exists) break;
                }
                return matchedView;
            }
    
            return lookupProxy.call(express.view, view, options)
        };
    }
    

    You will enable the new logic by calling the function above and passing express as a parameter, and then you will be able to specify an array of views to the configuration:

    var express = require('express');
    enableMultipleViewFolders(express);
    app.set('views', [__dirname + '/viewsFolder1', __dirname + '/viewsFolder2']);
    

    Or, if you prefer, you can patch the framework directly (updating the view.js file inside it)

    This should work in Express 2.x, not sure if it will with the new version (3.x)

    UPDATE

    Unluckily the above solution won't work in Express 3.x since express.view would be undefined

    Another possible solution will be to proxy the response.render function and set the views folder config until it gets a match:

    var renderProxy = express.response.render;
    express.render = function(){
        app.set('views', 'path/to/custom/views');
        try {
            return renderProxy.apply(this, arguments);
        }
        catch (e) {}
        app.set('views', 'path/to/default/views');       
        return renderProxy.apply(this, arguments);
    };
    

    I've not tested it, it feels very hacky to me anyway, unluckily this feature has been pushed back again: https://github.com/visionmedia/express/pull/1186

    UPDATE 2

    This feature has been added in Express 4.10, since the following pull request has been merged: https://github.com/strongloop/express/pull/2320

    0 讨论(0)
提交回复
热议问题