sql >> Databáze >  >> NoSQL >> MongoDB

Vazba dynamické odpovědi serveru (vnořený soubor json)

Nakonec se změní pouze to, jak chcete, aby byly pokyny používány a rozšiřovány. Jsou trochu odlišné od předchozích, ale jedna důležitá věc je, že appendChild by nemělo být uvnitř smyčka atributů instrukcí pro uzel, ale hned po něm; určitá pozornost musí být věnována také některým speciálním atributům, možná class není jediný, kdo ví :) ...zkuste úplně nahradit vnitřní for block s následujícím :

var tag = null, a;
if ('tag' in _instr) {
    tag = document.createElement(_instr.tag);

    if ('attributes' in _instr)
        for(a in _instr.attributes) {
            a.match(/^class$/) && (a = 'className');
            tag.setAttribute(a,_instr.attributes[a]);
        }

    if ('events' in _instr)
        for(a in _instr.events)
            tag.addEventListener(a,_instr.events[a], false);

    //
    // if ('content' in _instr && _instr.content!==null)
    //  tag.innerHTML = _instr.content;
    //
    // but take care ... what if is a input[text] 

    tag[_instr.tag=='input' ? 'value' : 'innerHTML'] = ('content' in _instr && _instr.content !== null) ? _instr.content : o[k];

    if ('children' in _instr)
        for(a in _instr.children)
            _(_instr.children[a], a, tag);

    !!_n && !!tag && _n.appendChild(tag);
}

===================

AKTUALIZOVÁNO

Nyní je výstup přesně takový, jaký se očekává. Dokonce jsem opravil hloupou chybu týkající se class atribut. Vyzkoušejte to, možná i na jiných vstupech, zkusil jsem na některá data dát text místo null a vypadá to dobře. Uvidíme se!

function assemble (data, instr) {
    var n = document.createDocumentFragment(), i;
    function create(d) {
        return (function _(_instr, _d, _key, _n) {
            var tag = null, i;
            if ('tag' in _instr) {
                tag = document.createElement(_instr.tag);

                tag.innerHTML = 'content' in _instr && !!_instr.content ? _instr.content : typeof _d == 'string' ? _d : '';

                if ('attributes' in _instr) 
                    for (i in _instr.attributes)
                        tag.setAttribute(i, _instr.attributes[i]);

                if ('events' in _instr)
                    for(i in _instr.events)
                        tag.addEventListener(i,_instr.events[i], false);

                //recur finally
                if ('children' in _instr) {
                    for (i in _instr.children){
                        _(_instr.children[i], _d[i], i, tag);
                    }
                }
                !!_n && _n.appendChild(tag);
            }
            return tag;
        })(instr, d, null);

    }
    return (function (){
        for (i in data) {
            n.appendChild(create(data[i]));
        }
        return n;
    })();
}



  1. Přihlaste se pomocí kořenových přihlašovacích údajů ke kontejneru Mongodb vytvořenému pomocí Docker compose

  2. Zamykání a Redis

  3. Jak se připojit k MongoDB běžícímu v kontejneru Docker?

  4. Pracoval někdo s Aerospike? Jak je to ve srovnání s MongoDB?