//JSON: {root:[.........]}
var author_store = new Ext.data.JsonStore({
fields : author_f,
url : "webjson.faces",
root : "author"// ,
// baseParams:{webnam:"author"} //也可在定义时指定参数.参数名相同时覆盖,如webname.
});
一. load 方法.
author_store.load({
params : {
webname : "findnam",
webvalue : v
}
});
传送页面: webjson.faces
传送方式: POST //默认且不能修改方式.
传送内容:webname=findnam webvalue=v
二.reload 方法
语法: author_store.reload() //无参数
概述: 自动加载JsonStore. baseParams如定义则传参数,没有则不传值.
posted on 2009-04-02 17:24
紫蝶∏飛揚↗ 阅读(4436)
评论(0) 编辑 收藏 所属分类:
EXTJS