使用sencha touch store调用简单的jsp

时间:2014-08-07 09:41:01

标签: sencha-touch sencha-touch-2 sencha-touch-2.1

我正在尝试调用商店内的字符串。我提出了回复"你好,你在服务器上

`out.print("Hi how are you");`

我正在尝试打印回复。

商品

Ext.define('PracticeSencha.store.CustomStore', {
    extend: 'Ext.data.Store',
    alias : 'widget.CustomStore',
    config: {
    type: 'ajax',
        url:'sample url.jsp',
        storeId: 'productStoreID'
    },
    reader: {
        type: 'text' 
    }
});

控制器

var sto = Ext.create('PracticeSencha.store.CustomStore');
        sto.load({
            scope : this,
            callback : function(records, operation, success,failure) {
                console.log(records);
                console.log(operation);
                console.log(success);
                console.log(sto.count());
            }
        });

我们是否可以使用Reader读取普通字符串?

1 个答案:

答案 0 :(得分:0)

这是可能的。通过扩展Ext.data.reader.Reader创建自己的TextReader。 Haven尚未完成,但我想你必须至少覆盖getResponseData - 方法。