MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Les champs supplémentaires Mongo dbref sont invisibles dans mongoshell. Comment les afficher ?

Le shell Mongo est une extension de Mozilla SpiderMonkey (1.7 ?) et a une fonctionnalité assez simple.

La suggestion d'un article de blog MongoDB sur le shell est de définir le inspect suivant fonction dans .mongorc.js dans votre répertoire personnel

function inspect(o, i) {
    if (typeof i == "undefined") {
        i = "";
    }
    if (i.length > 50) {
        return "[MAX ITERATIONS]";
    }
    var r = [];
    for (var p in o) {
        var t = typeof o[p];
        r.push(i + "\"" + p + "\" (" + t + ") => " + 
              (t == "object" ? "object:" + inspect(o[p], i + "  ") : o[p] + ""));
    }
    return r.join(i + "\n");
}

De plus, vous pouvez redéfinir la fonction DBRef.toString comme quelque chose comme :

DBRef.prototype.toString = function () {
    var r = ['"$ref": ' + tojson(this.$ref), '"$id": ' + tojson(this.$id)];
    var o = this;
    for (var p in o) {
        if (p !== '$ref' && p !== '$id') {
            var t = typeof o[p];
            r.push('"' + p + '" (' + t + ') : ' + 
                (t == 'object' ? 'object: {...}' : o[p] + ''));
        }
    }
    return 'DBRef(' + r.join(', ') + ')';
};