5

我正在尝试编写一个应该能够进行真正深度克隆的通用克隆函数。我遇到了这个链接,How to Deep clone in javascript并从那里获取了函数。

当我尝试使用直接 Javascript 时,该代码运行良好。我对代码做了一些小的修改,并尝试将 JSNI 代码放入 GWT。

克隆功能:

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:我想在这里获得一个通用的克隆方法,可以用来克隆任何对象。

4

1 回答 1

0

GWT 原型对象没有 forEach 方法;它们不继承标准的 javascript 对象原型,因为它们应该像 java 对象,而不是 javascript 对象。

您可能会摆脱 Object.prototype.forEach.call(item, function(){})

于 2013-01-11T14:59:27.063 回答