我在localhost(在Windows上)使用less.js(版本1.2.1),当我在控制台中使用less.watch()时,我不断收到此错误:
less.js:9 Uncaught TypeError: Object #
我找到了解决这个问题的答案,但没有运气.无论如何修复此错误? less.watch()确实有效,但它也很慢,每一秒我都会遇到这个错误.
html中确实没有任何内容,这里是我如何设置更少.我做错了吗?
Firebug控制台:
b.toCSS is not a function
[Break On This Error]
b && r(b.toCSS(),d,e.lastModified)
最佳答案
Dev版本是https://github.com/cloudhead/less.js/blob/master/dist/less-1.2.1.js
原文链接:https://www.f2er.com/js/429528.html相关部分是:
if (less.env === 'development') {
less.optimization = 0;
if (/!watch/.test(location.hash)) {
less.watch();
}
less.watchTimer = setInterval(function () {
if (less.watchMode) {
loadStyleSheets(function (e,root,_,sheet,env) {
if (root) {
createCSS(root.toCSS(),env.lastModified);
}
});
}
},less.poll);
} else {
less.optimization = 3;
}
在该部分:
if (root) {
createCSS(root.toCSS(),env.lastModified);
}
更改:
if (root) {
至:
if (root && sheet) {
然后重新缩小(如果需要)并使用新文件.