PHP中使用YII框架的问题
<?phpnamespaceapp\controllers;useyii\web\Controller;useapp\models\Users;classIndexCon...
<?php
namespace app\controllers;
use yii\web\Controller;
use app\models\Users;
class IndexController extends Controller{
public function actionIndex(){
//查询数据
$sql = 'select * from users where id=1'; //改这里
$results=Users::findBySql($sql)->all();
print_r($results);
}
}
查询一次数据库中users表后,删掉users表,新建一个users1表,将上述代码改为
<?php
namespace app\controllers;
use yii\web\Controller;
use app\models\Users;
class IndexController extends Controller{
public function actionIndex(){
//查询数据
$sql = 'select * from users1 where id=1'; //这里做了改动
$results=Users::findBySql($sql)->all();
print_r($results);
}
}
刷新页面为什么提示
Invalid Configuration – yii\base\InvalidConfigException
The table does not exist: {{%users}}
我明明要查询users1了呀,为什么还查询之前的users? 展开
namespace app\controllers;
use yii\web\Controller;
use app\models\Users;
class IndexController extends Controller{
public function actionIndex(){
//查询数据
$sql = 'select * from users where id=1'; //改这里
$results=Users::findBySql($sql)->all();
print_r($results);
}
}
查询一次数据库中users表后,删掉users表,新建一个users1表,将上述代码改为
<?php
namespace app\controllers;
use yii\web\Controller;
use app\models\Users;
class IndexController extends Controller{
public function actionIndex(){
//查询数据
$sql = 'select * from users1 where id=1'; //这里做了改动
$results=Users::findBySql($sql)->all();
print_r($results);
}
}
刷新页面为什么提示
Invalid Configuration – yii\base\InvalidConfigException
The table does not exist: {{%users}}
我明明要查询users1了呀,为什么还查询之前的users? 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
1个回答
展开全部
因为你Users Model的对应的表明没改,在这个Users模型类里,有这样的方法:
public static function tableName()
{
return '{{%users1}}'; // users1是你的新表名
}
而且直接执行Sql查询,好像不是这样用的吧?
我一般都是这样的
Yii::$app->getDb()->createCommand($sql)->queryAll()
Yii::$app->getDb()->createCommand($sql)->queryOne()
Yii::$app->getDb()->createCommand($sql)->excute()
....
区别你可以看看源代码的说明。(Yii2上的用法,yii1.x应该差不多,你稍微改改就应该没问题)
public static function tableName()
{
return '{{%users1}}'; // users1是你的新表名
}
而且直接执行Sql查询,好像不是这样用的吧?
我一般都是这样的
Yii::$app->getDb()->createCommand($sql)->queryAll()
Yii::$app->getDb()->createCommand($sql)->queryOne()
Yii::$app->getDb()->createCommand($sql)->excute()
....
区别你可以看看源代码的说明。(Yii2上的用法,yii1.x应该差不多,你稍微改改就应该没问题)
更多追问追答
追问
好像明白点了,Users类的表名应该怎么改呢?这个文件在哪里?UsersModel是我自己建的类,里面方法为空。
追答
这个放的地方一般在models这个目录下,文件名应该就叫Users
一般用编辑器就可以追踪到了,比如netbeans的按CTRL+B就可以打开对应的文件
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
佳达源
2024-10-28 广告
2024-10-28 广告
AR0144CSSM20SUKA0-CPBR这款产品,作为我司产品线中的重要一员,集成了高精度的传感器技术与先进的图像处理算法,广泛应用于安防监控、工业自动化及机器视觉等领域。其卓越的性能与稳定性,确保了在各种复杂环境下的精准数据采集与高效...
点击进入详情页
本回答由佳达源提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询