message

本文整理于网络,仅供阅读参考,如有不妥之处,敬请批评指正!如果您想加入微擎社区版技术大牛微信群和QQ群,请联系微信: ccccyyyy4444 或者 QQ:155120699 

message() - 页面执行中断并跳转到消息提示页面。

说明

message($msg, $redirect = '', $type = '')

参数

名称 类型 说明
$msg string 提示的消息内容
$redirect string 跳转地址,可缺省
$type string 提示类型,取值不同,消息页面呈现不同效果。

说明

  • $redirect
    • null 缺省,不进行跳转。
    • refresh 显示 message 页面后,重新跳转到当前执行的页面
    • referer 显示 message 页面后,回退到当前执行页面的上一页面
    • $url string 跳转到指定页面
  • $type
    • success 成功
    • error 错误
    • info 提示(灯泡)
    • warning 警告(叹号)
    • sql
    • ajax 不跳转到 message 页面,但是页面输出 json

取值 ‘ajax’ 时,eg:

// 不跳转到 message 页面,但是页面输出 json_encode($var) 
$var = array(
    'message'  => $msg;
    'redirect' => $redirect; 
    'type'     => $type;
); 
return json_encode($var);
本页目录
  1. 说明
  2. 参数
文档统计
浏览次数:175582次
编辑次数:210次历史版本
最近更新:2023-01-16 16:16:34

如果看不懂微擎社区版二次开发手册或者遇到问题,请联系微信: ccccyyyy4444 或者 QQ:155120699 ,如果我们有空闲时间,可以免费为您答疑解惑。