在我的一个页面中,我执行了类似的数据库查询..
dir(datatype)
# As for float, try dir(float)
#This will suggest you that there is no method called __getitem__ for float.
# You might be trying to get some data or you are using []/()/{} which is not correct.
这按预期工作,并返回一个我可以在页面中使用的值
function onStart()
{
$this['numz'] = Db::table('backend_users')->select('id')->count();
}
现在根据this,我们应该可以......
There are a total of {{ numz }} ppl.
然而,当我尝试这个时,我得到以下错误;
调用未定义的方法Illuminate \ Database \ Query \ Builder :: remember()
知道问题是什么或者这是一个错误吗?