带有 JSONP 的 ExtJS Ext.form.Panel

发布于 2024-12-26 15:30:55 字数 41 浏览 0 评论 0原文

是否可以将 JSONP 与 Ext.form.Panel 一起使用?

Is it possible to use JSONP with Ext.form.Panel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2025-01-02 15:30:55

您应该创建自定义绑定。例子:

Ext.create('Ext.Panel', {
    renderTo: 'container',
    initComponent: function() {
        this.callParent(arguments);

        this.store = Ext.create('Ext.data.Store', {
            model: 'user',
            proxy: {
                callbackKey: 'callback',
                type: 'jsonp',
                url: 'http://localhost/data2.php',
                reader: {
                    type: 'json',
                    root: 'user'
                }
            },
            autoLoad: true,
            listeners: {
                load: function() {
                    this.onload();
                },
                scope: this
            }
        });
    },
    onload: function() {
        // do something with this.store.data
    },
    listeners: {
        destroy: function() {
            delete this.store;
        }
    }
});

You should create custom binding. Example:

Ext.create('Ext.Panel', {
    renderTo: 'container',
    initComponent: function() {
        this.callParent(arguments);

        this.store = Ext.create('Ext.data.Store', {
            model: 'user',
            proxy: {
                callbackKey: 'callback',
                type: 'jsonp',
                url: 'http://localhost/data2.php',
                reader: {
                    type: 'json',
                    root: 'user'
                }
            },
            autoLoad: true,
            listeners: {
                load: function() {
                    this.onload();
                },
                scope: this
            }
        });
    },
    onload: function() {
        // do something with this.store.data
    },
    listeners: {
        destroy: function() {
            delete this.store;
        }
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文