javascript - ExtJS:如何从任何其他代理 Access Ajax 请求的值?

标签 javascript ms-access extjs proxy

我从网络服务获取一些特定数据,需要将这些数据传输到另一个网络服务的 extraParams。我怎样才能实现它?

我创建了一个 singleton 类来处理信息并获取这些数据;另一家商店 proxy 将使用这些数据。

这是单例类;

Ext.define('MyApp.MyInfo', {
    requires: [] ,

    singleton: true,

    getMyId: function () {
        var me = this;

        var request = Ext.Ajax.request({
            url: myUrl() + '/info', //Here is web-service url

            success: function(response, opts) {
                var obj = Ext.decode(response.responseText);
                var myId = obj.data[0].id; // Successfully gets required ID

                console.log(myId); // Successfully prints ID value
                // callback(userGid); //Not sure if callback method will handle ID value to fetch on any other class..            
            },

            failure: function(response, opts) {
                console.log('server-side failure with status code ' + response.status);
            }
        });
    }
});

这里是其他 proxy,它需要来自 Ajax.requestmyId 值;

stores: {
        myFooStore: {
            model: 'MyApp.Model',
            autoLoad: true,
            session: true,
            proxy: {
                url: myUrl() + '/the/other/service', 
                type: 'ajax',
                extraParams: {                   
                    id: // HERE! I need to get myId value on here. And couldn't get it.
                },
                reader: {
                    type: 'json',
                    rootProperty: 'data'
                }
            }
        },

最佳答案

您需要调用 store.load() 而不是 store 自动加载加载您的特定商店的方法。您可以使用 store.getProxy() 传递参数像下面的例子:

//you can set using get proxy
store.getProxy().setExtraParams({
    id: id
});
store.load()

//or you can direcly pass inside of store.load method like this
store.load({
    params: {
        id: 'value' //whatever your extraparms you can pass like this
    }
});

在此Fiddle ,我已经根据您的要求创建了一个演示。

代码片段:

Ext.application({
    name: 'Fiddle',

    launch: function () {
        Ext.define('MyInfo', {

            alternateClassName: "myinfo",

            singleton: true,

            getMyId: function (callback) {
                var me = this;

                Ext.Ajax.request({

                    url: 'id.json', //Here is web-service url

                    success: function (response, opts) {
                        var obj = Ext.decode(response.responseText),
                            myId = obj.data[0].id; // Successfully gets required ID

                        console.log(myId); // Successfully prints ID value

                        callback(myId);
                    },
                    failure: function (response, opts) {
                        callback('');
                        console.log('server-side failure with status code ' + response.status);
                    }
                });
            }
        });

        Ext.define('MyViewController', {
            extend: 'Ext.app.ViewController',
            alias: 'controller.myview',

            onLoadButtonTap: function () {
                var view = this.getView(),
                    myFooStore = this.getViewModel().getStore('myFooStore');
                view.mask('Please wait..');
                myinfo.getMyId(function (id) {
                    view.unmask();
                    if (id) {
                        myFooStore.getProxy().setExtraParams({
                            id: id
                        });
                        myFooStore.load();
                        /*
                        You can also do like this

                        myFooStore.load({
                            url:'',//If you want to change url dynamically
                            params:{
                                id:'value'//whatever your extraparms you can pass like this
                            }
                        });

                        */
                    }
                });

            }
        });

        Ext.define("ViewportViewModel", {
            extend: "Ext.app.ViewModel",

            alias: 'viewmodel.myvm',

            stores: {
                myFooStore: {

                    fields: ['name', 'email', 'phone'],

                    proxy: {
                        type: 'ajax',

                        url: 'data1.json',

                        reader: {
                            type: 'json',
                            rootProperty: ''
                        }
                    }
                }
            }
        });

        //creating panel with GRID and FORM
        Ext.create({

            xtype: 'panel',

            controller: 'myview',

            title: 'Demo with singletone class',

            renderTo: Ext.getBody(),

            viewModel: {
                type: 'myvm'
            },

            layout: 'vbox',

            items: [{
                xtype: 'grid',

                flex: 1,

                width: '100%',

                bind: '{myFooStore}',

                columns: [{
                    text: 'Name',
                    dataIndex: 'name'
                }, {
                    text: 'Email',
                    dataIndex: 'email',
                    flex: 1
                }, {
                    text: 'Phone',
                    dataIndex: 'phone'
                }]
            }],

            tbar: [{
                text: 'Load Data',
                handler: 'onLoadButtonTap'
            }]
        });
    }
});

关于javascript - ExtJS:如何从任何其他代理 Access Ajax 请求的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50102107/

相关文章:

javascript - functioninitialize() 和 xmlhttp.onreadystatechange = function() 事件顺序

ms-access - 从 SQL Where 条件创建查询

sql - 从多个范围查找值的最佳方法

ListView 中的 extjs 模型关联

extjs - 如何在一行 AEM 对话框中创建文本字段(经典 UI)

javascript - 将鼠标悬停在描述 JavaScript 上

javascript - Bloomapi,XMLHttpRequest 无法加载

javascript - AngularJS 创建指令并传入与父 Controller 中的操作相关的按钮的键/值对数组

SQL 查询 where 子句太长

javascript - Android 键盘调整应用程序 UI : sencha