我是laravel的新手,使用补充Rapyd Laravel,发给我以下问题:
[2014-09-16 02:26:01] production.ERROR: exception 'ErrorException' with message 'Use of undefined constant Autor - assumed 'Autor'' in C:\wamp\www\prueba3\app\controllers\AutorController.php:11
Stack trace:
#0 C:\wamp\www\prueba3\app\controllers\AutorController.php(11): Illuminate\Exception\Handler->handleError(8, 'Use of undefine...', 'C:\wamp\www\pru...', 11, Array)
我希望你能帮助我,在图片链接下面
https://imagizer.imageshack.us/v2/1448x815q90/674/1YVKfP.png
使用时,效果很好:
$set = DataSet::source("Bib_Autor");
使用时,不起作用
$set = DataSet::source(Autor);
我是新的...... ty
答案 0 :(得分:1)
你可能想改变这个:
$set = DataSet::source(Autor);
到这个
$set = DataSet::source("Autor");
答案 1 :(得分:0)
您应该实例化模型或使用Eloquent查询构建器
$set = DataSet::source(new Autor);
$set = DataSet::source(DB::table("autors"));