当前位置:Gxlcms > PHP教程 > thinkphp查询不出来数据,在本地可以,但是在FTP上就不行了

thinkphp查询不出来数据,在本地可以,但是在FTP上就不行了

时间:2021-07-01 10:21:17 帮助过:5人阅读

public function index() {		//列表过滤器,生成查询Map对象				$map = $this->_search ();		if (method_exists ( $this, '_filter' )) {			$this->_filter ( $map );		}		$this->assign ( 'gametype', C('gametype') );		$this->assign ( 'gametype_two', C('gametype_two') );		$name=$this->getActionName();		$model = D($name);		if (! empty ( $model )) {		 $this->_list ( $model, $map );		}	 		$this->display ();		return;	}


回复讨论(解决方案)

配置文件修改正确了吗?

配置文件修改正确了吗?


修改正确。在本地localhost可以,正常。但是在FTP上就不行了。是不是区分大小写原因?

提供的信息太少了,有无错误信息,打开错误提示功能看看。

已经做出来了,是Model层的数据库名错了

人气教程排行