File:cn/special.xmls
Method:query.getList(columns,where,order,size,*count,*page)
未指定的错误
越界或超过范围
cn/special.xmls
$out main(){
$shell.running();
$shell.layout(pages/special.htm);
@qulist=$query(content,news);
@
list=@qulist.getList(['*'],['CatalogId=60 and Status>0'],['Grade desc,ContentId desc']);


}

//图片详情
$out imageslist(){
@query=$query(extend,news);
@query[ContentId]=$http.post(id);
@data=@query.getList(['*'],['ContentId={*ContentId}'],['Grade desc']);
$shell.json(status,ok);
$shell.json(data,@data);
}