据我所知,Less 不具备使用用户定义函数的能力。但是,手写笔可以。因此,如果您愿意跳到备用 CSS 预处理器上,那么会很有趣!(Stylus 与 Less 非常相似,切换到它应该不会花太多时间。Plusconnect-assets
已经支持 Stylus,所以它应该很容易插入到您的环境中。)
服务器.js
var fs = require('fs');
var stylus = require('stylus');
stylus(fs.readFileSync("styles.styl", 'utf8')) //load stylus file
.define("versionedFile", versionedFile) //add our custom function to the stylus env
.render(function(err, css){ //render!
if (err) {
throw err;
}
fs.writeFileSync("styles.css", css); //write the compiled css to a .css file
});
//our custom function
function versionedFile(filename) {
... lookup versioned file of filename ...
return "versionedFilename.png"
}
样式.styl
.image-block {
background-image: url(versionedFile('unversionedFilename.png')); //this is how we use our custom function
}
这将编译成:
样式.css
.image-block {
background-image: url("versionedFilename.png"); //hooray!
}