从Ajax请求执行内联脚本

时间:2011-09-23 10:11:53

标签: javascript extjs

在我的应用程序主页上,我构建了一个“小部件”系统。窗口小部件的源代码是在服务器端生成的,并通过Ajax推送到客户端。

Ext.Ajax.request({
    url: '/get-widgets',
    success: function( response ) {
        var boxes = Ext.decode( response.responseText );
        Ext.each( boxes, function( box ) {
            box.id = 'cell-' + box.cell;

            var element = Ext.DomHelper.append( 'canvas', {
                tag: 'div',
                id: box.id,
                cls: 'widget size-' + ( box.size || '11' ),
                children: [{
                    tag: 'div',
                    cls: 'title',
                    html: box.title
                }, {
                    tag: 'div',
                    cls: 'main',
                    html: box.body
                }]
            }, true );
        });
    }
});

问题是,有些小部件在其体内有一些内联Javascript,需要执行。这在Firefox中完美运行,但不适用于Chrome。

是否需要为要执行的内联代码激活标记或其他内容?

1 个答案:

答案 0 :(得分:1)

发现Ext.Element::update()方法具有扫描和执行内联脚本的标志。我按如下方式更改了代码以使用此方法:

var element = Ext.DomHelper.append( 'canvas', {
    tag: 'div',
    id: box.id,
    cls: 'widget size-' + ( box.size || '11' ) + ' ' + ( box.cls || '' ) + ' ' + ( box.type || '' ),
    children: [{
        tag: 'div',
        cls: 'title',
        html: box.title
    }, {
        id: box.id + '-body',
        tag: 'div',
        cls: 'main'
    }]
}, true );

Ext.get( box.id + '-body' ).update( box.body, true );