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

我试图写一个通用的克隆函数,它应该能够做到真正的深度克隆。 我遇到了这个链接,如何在JavaScript中进行深度克隆,并从那里获取功能。

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


GWT原型对象没有forEach方法; 它们不会继承标准的JavaScript对象原型,因为它们应该像Java对象那样工作,而不是JavaScript对象。

你可能会抛弃Object.prototype.forEach.call(item,function(){})

链接地址: http://www.djcxy.com/p/68325.html

上一篇: Javascript generic clone() method used in GWT application

下一篇: Taking square photo with react native camera