我正在尝试使用Juice2,但在使用npm package页面中的基本示例时,似乎是由Juice引起的TypeError
。
这是给出的“如何使用”示例。
juice("/path/to/file.html", function(err, html) {
console.log(html);
});
这是我的代码。
function juicify() {
console.log('juice called...');
var path = './file.html'
juice(path, function(err, html) {
console.log(html);
});
}
这是输出到控制台的错误的较长版本。
Array.prototype.splice.call(this._childNodes, refChildIndex, 0, newChild);
TypeError: Cannot set property length of [object Object] which has only a getter
at core.Node.insertBefore
任何人都有任何想法是什么问题?谢谢!