我正在尝试从特定路径获取*.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
页面。
感谢您的支持。