在GWT应用程序中使用的JavaScript通用clone()方法(Javascript gener

2019-08-06 10:49发布

我试图写它应该是能够做到真正的深克隆的通用复制功能。 我所遇到的这个环节, 如何深克隆在JavaScript中 ,并从那里接过功能。

该代码workds非常好,当我尝试使用直接的JavaScript。 我没有在代码稍作修改,并试图把在GWT的JSNI代码。

克隆功能:

deepCopy = function(item)
{
    if (!item) {
        return item;
    } // null, undefined values check

    var types = [ Number, String, Boolean ], result;

    // normalizing primitives if someone did new String('aaa'), or new Number('444');
    types.forEach(function(type) {
        if (item instanceof type) {
            result = type(item);
        }
    });

    if (typeof result == "undefined") {
        alert(Object.prototype.toString.call(item));
        alert(item);
        alert(typeof item);
        if (Object.prototype.toString.call(item) === "[object GWTJavaObject]") {
            alert('1st');
            result = [];
            alert('2nd');
            item.forEach(function(child, index, array) {//exception thrown here
                alert('inside for each');
                result[index] = deepCopy(child);
            });
        } else if (typeof item == "GWTJavaObject") {
            alert('3rd');

            if (item.nodeType && typeof item.cloneNode == "function") {
                var result = item.cloneNode(true);
            } else if (!item.prototype) { 
                result = {};
                for ( var i in item) {
                    result[i] = deepCopy(item[i]);
                }
            } else {
                if (false && item.constructor) {
                    result = new item.constructor();
                } else {
                    result = item;
                }
            }
        } else {
            alert('4th');
            result = item;
        }
    }

    return result;
}

而这样的例子我传递给这个函数是这样的:

List<Integer> list = new ArrayList<Integer>();
        list.add( new Integer( 100 ) );
        list.add( new Integer( 200 ) );
        list.add( new Integer( 300 ) );

        List<Integer> newList = ( List<Integer> ) new Attempt().clone( list );

        Integer temp = new Integer( 500 );
        list.add( temp );

        if ( newList.contains( temp ) )
            Window.alert( "fail" );
        else
            Window.alert( "success" );

但是,当我执行,我得到的克隆功能空指针异常后立即alert("2nd")线。

请帮助。

PS:我想在这里得到一个通用的克隆方法,其可用于克隆的对象。

Answer 1:

GWT原型对象没有一个foreach方法; 他们不继承标准的JavaScript对象的原型,因为他们都应该像java对象,而不是JavaScript对象。

你也许可以逃脱Object.prototype.forEach.call(项目,函数(){})



文章来源: Javascript generic clone() method used in GWT application