gpt4 book ai didi

javascript - js-beautify for html 没有方法 'beautify'

转载 作者:搜寻专家 更新时间:2023-10-31 23:38:37 28 4
gpt4 key购买 nike

我正在尝试在 node.js 应用程序中为 html 使用 js-beautify:

var htmlBeautifier = require('js-beautify').html;
...
res = htmlBeautifier.beautify(html);
...

但是我得到:

...
res = htmlBeautifier.beautify(html,{});
^
TypeError: Object function (html_source, options) {
return style_html(html_source, options, js_beautify.js_beautify, css_beautify.css_beautify);
} has no method 'beautify'

关于使用 js-beautify for html 的文档没有提供太多信息。应该如何将 js-beautify 用于 html

最佳答案

根据 the documentation (可以做更多的细节),html 函数,而不是将函数作为属性的对象。所以:

var htmlBeautifier = require('js-beautify').html;
//...
res = htmlBeautifier(html);

var htmlBeautifier = require('js-beautify');
//...
res = htmlBeautifier.html(html);

关于javascript - js-beautify for html 没有方法 'beautify',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24961196/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com