是否可以使用Node.js将脚本文件动态注入html?

时间:2016-08-09 09:20:49

标签: javascript html node.js

我正在尝试从特定路径获取*.js并将脚本注入index.html文件。

我使用了以下node.js代码从目录中检索文件。

function walkSync(currentDirPath, callback) {
    var fs = require('fs'),
        path = require('path');
    fs.readdirSync(currentDirPath).forEach(function (name) {
        var filePath = path.join(currentDirPath, name);
        var stat = fs.statSync(filePath);
        if (stat.isFile()) {
            callback(filePath, stat);
        } else if (stat.isDirectory()) {
            walkSync(filePath, callback);
        }
    });
}

var componentsFilePath = [];
walkSync("app/scripts/", function (filePath, stats) {
    if (filePath.indexOf(".js") > 0) {
        componentsFilePath.push(filePath);
    }
});

console.log("scripts : " + componentsFilePath);

现在,我正面临着注入的挑战。

无法将上述脚本文件注入html页面。

感谢您的支持。

0 个答案:

没有答案