模块表单中判断提交title是否已经重复提交,这里是帮助文档的代码。
求助内容:如何实现 判断是否重复时,只去查询比对 已审核通过 的内容title。
<?php namespace Phpcmf\Controllers;
/**
* 二次开发时可以修改本文件,不影响升级覆盖
*/
class Test extends \Phpcmf\Home\Mform
{
public function index() {
$this->_Home_List();
}
public function show() {
$this->_Home_Show();
}
public function post() {
if (IS_POST) {
// 这里表示提交之前
$post = \Phpcmf\Service::L('input')->post('data');
$this->index = $this->_Module_Row($this->cid);
if (\Phpcmf\Service::M()->table($this->init['table'])
->where('cid', $this->index['id'])
->where('title', $post['title'])->counts()) {
$this->_json(0, 'title字段的值已经存在,不能重复提交');
}
}
$this->_Home_Post();
}
}
if (\Phpcmf\Service::M()->table($this->init['table']) ->where('cid', $this->index['id']) ->where('status',1) ->where('title', $post['title'])->counts()) { $this->_json(0, 'title字段的值已经存在,不能重复提交'); }