2

在 ExtJS 中,无论如何都要创建一个带有“存储”的隐藏字段,这意味着当我加载页面时,隐藏字段将根据 url 向服务器发出请求并将值存储在自身中。类似于 what srcdoes forimage或 what storecan do got grid

4

1 回答 1

3

实现这一目标的最简单方法是调用自定义 ajax 请求。例子:

var hiddenField = [...];

Ext.Ajax.request({
    url: 'foo.php',
    success: function(response, opts){
        hiddenField.setValue(response.responseText);
    },
    failure: function(response, opts) {
        alert('Error');
    },
    params: { foo: 'bar' }
});
于 2013-01-15T08:00:25.853 回答