联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
判断后前台没有显示 _msg的提示, 代码写在控制器的
类型:迅睿CMS 更新时间:2021-05-31 09:35:34

判断后前台没有显示 _msg的提示,  代码写在控制器的

{xunruicms_img_title}

前台只是执行了效果

{xunruicms_img_title}


{xunruicms_img_title}


代码:

public function index() {

   //接收数据
    $post_id = \Phpcmf\Service::L('input')->post('post_id'); //内容id
    $post_title = \Phpcmf\Service::L('input')->post('post_title'); //内容标题
    $post_mbrid = \Phpcmf\Service::L('input')->post('post_mbrid'); //会员id
    $post_inputtime = SYS_TIME; //当前时间


    //变量为空
    if(empty($post_id) && empty($post_title) && empty($post_mbrid)){
        return $this->_msg(0,'非法操作');
    }

    $rt = \Phpcmf\Service::M()->db->table('member_dowlog')->insert([
        'cid'        => $post_id,
        'title'      => $post_title,
        'uid'        => $post_mbrid,
        'inputtime'  => $post_inputtime,
    ]);

    if($rt['code']){
        return $this->_msg(1,'操作成功!');
    }else{
        return $this->_msg(0,'操作失败!');
    }

}


回帖
  • 官方研发技术-罗老师
    #1楼    官方研发技术-罗老师
    2021-05-26 15:22:37
    Chrome 0
    这个写法很标准,没有任何问题的
    满意答案
  • 无
    #2楼    无
    2021-05-26 15:26:22
    Chrome 0
    官方研发技术-罗老师 不知道为啥 下面的判断没跳转 msg 页面

  • 无
    #3楼    无
    2021-05-31 09:35:34
    Chrome 0
    @官方研发技术-罗老师:结帖 结帖~~~~~~~~~~~~~