5
/** Supplant **/
String.prototype.supplant = function(o) {
    return this.replace (/{([^{}]*)}/g,
        function (a, b) {
            var r = o[b];
            return typeof r === 'string' || typeof r === 'number' ? r : a;
        }
    );
};

Crockford 无疑是一位 JavaScript 大巫师,但他的原型在涉及多级对象时却有所欠缺。

我希望此功能涵盖多级对象替换,例如“{post.detailed}”,任何人都可以帮助我修改替代版本吗?

4

3 回答 3

5

那应该不会太难。请改用此替换功能:

function (a, b) {
    var r = o,
        parts = b.split(".");
    for (var i=0; r && i<parts.length; i++)
        r = r[parts[i]];
    return typeof r === 'string' || typeof r === 'number' ? r : a;
}
于 2012-10-16T08:32:03.497 回答
3

我个人讨厌人们在 JavaScript 的原生类型上塞进自己的垃圾。如果我要写它,我会做以下事情......但是为什么不喜欢布尔值呢?

function supplant(str, data) {
    return str.replace(/{([^{}]*)}/g, function (a, b) {

        // Split the variable into its dot notation parts
        var p = b.split(/\./);

        // The c variable becomes our cursor that will traverse the object
        var c = data;

        // Loop over the steps in the dot notation path
        for(var i = 0; i < p.length; ++i) {

            // If the key doesn't exist in the object do not process
            // mirrors how the function worked for bad values
            if(c[p[i]] == null)
                return a;

            // Move the cursor up to the next step
            c = c[p[i]];
        }

        // If the data is a string or number return it otherwise do
        // not process, return the value it was, i.e. {x}
        return typeof c === 'string' || typeof c === 'number' ? c : a;
    });
};

顺便说一句,它不支持数组,你需要做一些额外的事情来支持它。

于 2012-10-16T08:35:00.153 回答
2

@Bergi 方法支持布尔值:

function (a, b) {
    var r = o,
        parts = b.split(".");
    for (var i=0; r && i<parts.length; i++)
        r = r[parts[i]];
    return typeof r === 'string' || typeof r === 'number' || typeof r === 'boolean' ? r : a;
}

原始 Crockford 的 Supplant 方法,支持布尔值:

if (!String.prototype.supplant) {
    String.prototype.supplant = function (o) {
        return this.replace(/{([^{}]*)}/g,
            function (a, b) {
                var r = o[b];
                return typeof r === 'string' || typeof r === 'number' || typeof r === 'boolean' ? r : a;
            }
        );
    };
}

祝你好运!

https://gist.github.com/fsschmitt/b48db17397499282ff8c36d73a36a8af

于 2016-07-22T09:40:04.317 回答