php - Composition de chaînes HTML
迷茫
迷茫 2017-05-24 11:36:25
0
4
856

J'ai maintenant une chaîne de HTMLcode et je souhaite formater la chaîne. Existe-t-il une méthode disponible ?

Vous avez besoin d'un plug-in ou d'une méthode js pouvant être utilisée pour la conversion dans le projet.

Par exemple, la chaîne d'origine est :

<p><p>This is a p</p><p>This is another p</p></p>

Ajoutez des espaces et des nouvelles lignes pour devenir une nouvelle chaîne :

<p>
    <p>This is a p</p>
    <p>This is another p</p>
</p>
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

répondre à tous(4)
世界只因有你

La première solution consistait à utiliser des expressions régulières pour répondre à la question, mais cela n'a pas fonctionné.
J'ai fait le tri dans mes pensées et je l'ai parfaitement résolu (je pense que c'est parfait).

function codeFormat(code, indent, tmpIndent){
    var indent = indent || '  ';
    var tmpIndent = tmpIndent || '\n';
    var preg = /<(\S*)([^>]*)>([\s\S]*?)<\/>/ig;
    return code.replace(preg, function(
/*
    感觉没什么难度,一个循环
    遇见 >后跟<,换行
    遇见 < 缩进
    遇见 </ 取消缩进
*/
function codeFormat(code, indent){
    var indent = indent || "  ";    //缩进字符
    var tmpIndent = "";    //保存代码字符串
    var result = "", key = "", keyNext = "";
    for( var i = 0 ; i < code.length ; i++ ){
        key = code[i];
        keyNext = i < code.length-1 ? code[i+1] : "";
        if(key == "<"){
            if( keyNext == "/" ){
                tmpIndent = tmpIndent.substr(indent.length);
            }
            if( result[result.length-1] == "\n" ){
                result += tmpIndent;
            }
            if( keyNext != "/" ){
                tmpIndent += indent;
            }
        }
        result += key;
        if(key == ">" && keyNext == "<" ){
            result += "\n";
        }
    }
    return result;
}

codeFormat("<p><p>This is a p</p><p>This is another p</p></p>");
/*
<p>
  <p>This is a p</p>
  <p>This is another p</p>
</p>
*/
codeFormat('<html><head><title></title></head><body class="haha"><p style="background:#C00;"><p>This is a p</p><p>This is another p</p></p></body></html>', '    ');
/*
<html>
    <head>
        <title>
        </title>
    </head>
    <body class="haha">
        <p style="background:#C00;">
            <p>This is a p</p>
            <p>This is another p</p>
        </p>
    </body>
</html>
*/
, , , ){ return tmpIndent + '<' + + + '>' + codeFormat(, indent, tmpIndent + indent) + ( .trim().substr(0,1) == '<' ? tmpIndent : '') + '</' + + '>'; }); } codeFormat("<p><p>This is a p</p><p>This is anothers p</p></p><p><p>This is a p</p><p>This is another p</p></p>"); /* <p> <p>This is a p</p> <p>This is anothers p</p> </p> <p> <p>This is a p</p> <p>This is another p</p> </p> */ codeFormat('<html><head><title></title></head><body class="haha"><p style="background:#C00;"><p>This is a p</p><p>This is another p</p></p></body></html>', '----'); /* <html> ----<head> --------<title></title> ----</head> ----<body class="haha"> --------<p style="background:#C00;"> ------------<p>This is a p</p> ------------<p>This is another p</p> --------</p> ----</body> </html> */

Voici l'ancienne réponse pour les boucles :

rrreee
刘奇

Pourquoi ma question continue-t-elle à être rejetée ? Encore une bonne question. . . .
@mqycn , @zhenguoli

C'est un plan écrit par mon amie @candy :

import _ from 'lodash';

const splitOnTags = str => str.split(/(<\/?[^>]+>)/g).filter(line=>line.trim()!="");
const isTag = str => /<[^>!]+>/.test(str);
const isClosingTag = str => /<\/[^>]+>/.test(str);
const isSelfClosingTag = str => /<[^>]+\/>/.test(str);
const isOpeningTag = str => isTag(str) && !isClosingTag(str) && !isSelfClosingTag(str);

export default (str, indent) => {
  let depth = 0;
  indent = indent || '    ';

  return splitOnTags(str).map(item=>{
    if(isClosingTag(item)) {
      depth--;
    }

    const line = _.repeat(indent, depth) + item;

    if(isOpeningTag(item)) {
      depth++;
    } 

    return line;
  }).join('\n');
}
黄舟

http://tool.oschina.net/codef... En ligne. D'autres éditeurs incluent embellir

伊谢尔伦
  1. Pour les outils de développement, vous pouvez essayer l'éditeur VSCode.

https://code.visualstudio.com/

Une fois l'installation terminée, appuyez sur shift-ctrl-x pour ouvrir la liste des plug-ins, recherchez Beautify et installez-le pour embellir le code HTML.
Référez-vous aux paramètres correspondants ici :

https://marketplace.visualstu...

  1. Vous pouvez utiliser HTML String Parser pour convertir des formats en code, tels que

https://www.npmjs.com/package...

Ou vous pouvez utiliser cheerio pour analyser le texte DOM et le rééditer.

3. (Il n'est pas difficile de recréer un analyseur HTML, référez-vous à ma chronique
http://ewind.us/2016/toy-html...

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal