$array['name']='haiyang';
$array['sex']='man';
$array['phone']='1234';
$this->assign($array);
$this->display('/index');
$array['sex']='man';
$array['phone']='1234';
$this->assign($array);
$this->display('/index');
2016-07-01
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteBase /
</IfModule>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteBase /
</IfModule>
2016-06-28
使用3.2.x的同学,注意一下:
1. model需要引入命名空间
namespace Home\Model;
use Think\Model;
class UserModel extends Model{}...
2. 实例化时, 在自定义模块前面添加\Home\Model前缀,如$user = new \Home\Model\UserModel();
3. 如果有的同学发现UserModel模块明明可以实例化,但是一到了CommonModel就出错了。这有可能是你的数据库里没有 [自定义数据表前缀]_common的表。这个时候新建一个"前缀_common"的表就好了
1. model需要引入命名空间
namespace Home\Model;
use Think\Model;
class UserModel extends Model{}...
2. 实例化时, 在自定义模块前面添加\Home\Model前缀,如$user = new \Home\Model\UserModel();
3. 如果有的同学发现UserModel模块明明可以实例化,但是一到了CommonModel就出错了。这有可能是你的数据库里没有 [自定义数据表前缀]_common的表。这个时候新建一个"前缀_common"的表就好了