ThinkPHP-类库参考-Action类

来自站长百科
跳转至: 导航、​ 搜索

导航:返回上一页

  • getActionName() 获取当前Action的名称
  • isAjax() 是否为AJAX请求
  • isPost() 是否为POST请求
  • isGet() 是否为GET请求
  • isPut() 是否为PUT请求
  • isDelete() 是否为DELETE请求
  • isHead() 是否为HEAD请求
  • display(templateFile=,charset=,contentType='text/html') 输出模板
  • templateFile 模板文件
  • charset 输出编码
  • contentType 输出类型
  • fetch(templateFile=,charset=,contentType='text/html') 获取模板输出内容
  • buildHtml(htmlfile=,templateFile=,charset=,contentType='text/html') 生成静态页面
  • assign(name,value=) 模板变量赋值
  • __set(name,value) 模板变量赋值,魔术方法
  • get(name) 获取模板变量
  • trace(name,value=) Trace变量赋值
  • error(message,ajax=false) 错误跳转
  • success(message,ajax=false) 成功跳转
  • ajaxReturn(data,info=,status=1,type=) AJAX返回数据到客户端
  • redirect(url,params=array(),delay=0,msg=) Action重定向


参考资料[ ]