我在Ace编辑器中找到了美化扩展,但我没有看到任何如何使用它的例子。这就是我到目前为止所拥有的:
var beautiful = ace.require("ace/ext/beautify");
beautiful.beautify();
但是我收到了错误:
Result of expression 'e' [undefined] is not an object.
答案 0 :(得分:13)
看起来这样有效:
var beautify = ace.require("ace/ext/beautify"); // get reference to extension
var editor = ace.edit("editor"); // get reference to editor
beautify.beautify(editor.session);
它要求您将Ace Editor会话作为第一个参数传递。在我原来的问题中,我没有传递任何变量,这是一个错误。
注意:扩展发行说明中提到的效果不佳。它的使用效果不佳。
答案 1 :(得分:9)
我没有得到它的工作
var beautify = ace.require("ace/ext/beautify"); // get reference to extension
美化总是undefined
。
过了一会儿我放弃了。
并使用外部Beautify库(Link)
function beatify() {
var val = editor.session.getValue();
//Remove leading spaces
var array = val.split(/\n/);
array[0] = array[0].trim();
val = array.join("\n");
//Actual beautify (prettify)
val = js_beautify(val);
//Change current text to formatted text
editor.session.setValue(val);
}
答案 2 :(得分:1)
在美化文件中,只需将美化到windows(全局对象)之后,就可以从全局对象中调用美化。 第330行的ext-beautify.js添加
window.beautify = exports;
然后你可以使用它。
vm.session = vm.editor.getSession();
beautify.beautify(vm.session);
答案 3 :(得分:1)
有同样的问题。结束构建一个符合我需求的简化美化方法(不要让所有内容都在同一条线上)。
注意我使用的是Ace编辑器的react version,但同样适用于JS。它不支持注释,因为我生成的代码不包含它们,如果您希望支持它们,则可能需要扩展该方法。
const html = prettifyHtml('<div id="root"><div class="container"><div class="row"><div class="col-lg-6"><a href="#">hello there</a><p>What <strong>is</strong> this? <br /> yes</p></div><div class="col-lg-6"></div></div></div></div>');
const scss = prettifyScss('.container { strong {color:green; background-color:white; border:1px solid green; &:hover {cursor:pointer} } }');
<AceEditor
mode="html" // or "scss"
theme="github"
defaultValue={html} // or scss
onChange={this.onChange.bind(this)}
/>
<强> HTML:强>
export const prettifyHtml = (html) => {
let indent = 0,
mode = 'IDLE',
inTag = false,
tag = '',
tagToCome = '',
shouldBreakBefore = false,
shouldBreakAfter = false,
breakBefore = ['p', 'ul', 'li'],
breakAfter = ['div', 'h1', 'h2', 'h3', 'h4', 'p', 'ul', 'li'];
return html
.split('')
.reduce((output, char, index) => {
if (char === '<') {
tagToCome = whichTag(html, index);
shouldBreakBefore = tagToCome && breakBefore.indexOf(tagToCome) >= 0;
mode = 'TAG';
inTag = true;
output += (shouldBreakBefore ? br(indent) : '') + '<';
} else if (char === '/' && mode == 'TAG') {
mode = 'CLOSING_TAG'
inTag = true;
output += '/';
} else if (char === ' ') {
inTag = false;
output += ' ';
} else if (char === '>') {
if (mode === 'TAG' || mode === 'CLOSING_TAG') {
indent += mode === 'TAG' ? +1 : -1;
shouldBreakAfter = breakAfter.indexOf(tag) >= 0;
inTag = false;
tag = '';
}
output += '>';
output += shouldBreakAfter ? br(indent) : '';
} else {
output += char;
if (inTag) {
tag += char;
}
}
return output;
}, '');
}
<强> SASS:强>
export const prettifyScss = (scss) => {
let indent = 0,
closeBefore = 0;
return scss
.split('')
.reduce((output, char) => {
closeBefore++;
if (char === '{') {
indent++;
output += '{' + br(indent);
} else if (char === '}') {
indent--;
output += br(indent) + '}' + (closeBefore > 3 ? '\n' : '') + _tabs(indent);
closeBefore = 0;
} else if (char === '.') {
output += br(indent) + '.';
} else if (char === ';') {
output += ';' + br(indent);
} else {
output += char;
}
return output;
}, '');
}
辅助方法:
const _tabs = (number) => {
let output = '';
for (let cnt = 0; cnt < number; cnt++) {
output += '\t';
}
return output;
}
const br = (indent) => {
return '\n' + _tabs(indent);
}
export const whichTag = (html, index) => {
let inTag = true,
tag = '';
const arr = html.split('');
for (let i = index + 1; i < index + 10; i++) {
const char = arr[i];
if (char >= 'a' && char <= 'z' && inTag) {
tag += char;
} else if (char !== '/') {
inTag = false;
}
}
return tag;
}
答案 4 :(得分:1)
遇到了同样的问题,但通过添加两个脚本文件解决了这个问题。
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ace.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ext-beautify.js"></script>
答案 5 :(得分:0)
Ace编辑器仅对php
使用美化-它是用ace文档编写的。
对我来说,最好的解决方案是https://github.com/beautify-web/js-beautify
Js/CSS/HTML
有很多设置,可以npm
,python
,import
,required
,import beautify from 'js-beautify';
// your code
beautifyHTML() {
this.html = beautify.html(this.html, {
indent_size: '2',
indent_char: ' ',
max_preserve_newlines: '5',
preserve_newlines: true,
keep_array_indentation: false,
break_chained_methods: false,
indent_scripts: 'normal',
brace_style: 'expand',
space_before_conditional: true,
unescape_strings: false,
jslint_happy: false,
end_with_newline: false,
wrap_line_length: '80',
indent_inner_html: true,
comma_first: false,
e4x: false
});
}
等来使用。{p >
{{1}}
查看更多文档和设置here
答案 6 :(得分:0)
打开页面时,在窗口加载后,您可能需要执行 <mat-step *ngFor="let name of names" [label]="name" [completed]="name + 'IsCompleted'">
<button mat-button (click)="redirectToNameUrl(name)" mat-raised-button color="primary">
{{ (inProgress ? 'In progress...' : 'Sign in with ' + name + 'details!' )}}
</button>
</mat-step>
,以便初始化beautify.beautify
。
editor.session