|
发表于 2017-5-18 17:30:35
|
显示全部楼层
要刷新到指定页,不要直接用默认的刷新按钮,自己放按钮调用
loadPageData(integer pageIndex, boolean append, Object options)
分页模式下加载第N页数据
参数:
integer pageIndex [required]页索引
boolean append 是否增量模式
Object options 刷新参数
参数格式:
{
"onError" : {function} - 失败回调,function(event),
event的格式:
{
"source" : {justep.XData} - 组件的js对象,
"errorType" : {string} - 'server',
"errorNode" : {object} - 错误信息,
"httpError" : {boolean} - 是否http请求失败,
"httpState" : {string} - http请求返回码
}
"onSuccess" : {function} - 成功回调,function(event),
event的格式:
{
"source" : {justep.XData} - 组件的js对象
}
}
|
|