迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
在前端发布完后,返回到刚发布文章页面。这样是如何实现的?
/** * 回调处理结果 * $data * */ protected function _Call_Post($data) { if ($data[1]['status'] == 9) { $list = $html = ''; if ($this->module['category'][$data[1]['catid']]['setting']['html']) { // 生成权限文件 if (!dr_html_auth(1)) { return dr_return_data(0, dr_lang('/cache/html/ 无法写入文件')); } $html = WEB_DIR.'index.php?s='.$this->module['dirname'].'&c=html&m=showfile&id='.$data[1]['id']; $list = WEB_DIR.'index.php?s='.$this->module['dirname'].'&c=html&m=categoryfile&id='.$data[1]['catid']; } $url = WEB_DIR.'index.php?s='.$this->module['dirname'].'&c=showid='.$data[1]['id']; return dr_return_data(1, dr_lang('操作成功'), ['url' => $url, 'id' => $data[1]['id'], 'catid' => $data[1]['catid'], 'htmlfile' => $html, 'htmllist' => $list]); } else { if (\Phpcmf\Service::L('input')->post('is_draft')) { return dr_return_data(1, dr_lang('操作成功,已存储到草稿箱')); } else { return dr_return_data(1, dr_lang('操作成功,等待管理员审核'), ['id' => $data[1]['id'], 'catid' => $data[1]['catid']]); } } }
$url = WEB_DIR.'index.php?s='.$this->module['dirname'].'&c=showid='.$data[1]['id'];
应该是:show&id