File:cn/contact.xmls
Method:query.getList(columns,where,order,size,*count,*page)
未指定的错误
越界或超过范围
cn/contact.xmls
$out main(){
$shell.running();
$shell.layout(pages/contact.htm);
@query=$query(content,news);
//分部内容
@fbBody=@query.getList(['Body,ContentId'],['CatalogId=51 and Status>0'],['ContentId desc']);
}
//在线留言
$out submit(){
@query=$query(forum,forum);
@query[Fullname]=$http.post(Fullname);
@query[Mobile]=$http.post(Mobile);
@query[Email]=$http.post(Email);
@query[AreaId]=1;
@query[MemoMessage]=$http.post(MemoMessage);
@id=@query.insert(1);
$if(@id>0){
$shell.json(status,ok);
$end;
}
$else{
$shell.json(data,no);
$end;
}
}