Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的动作控制器内部有问题。我需要检查数据库中是否存在(data1 和 data2)。如果存在,我想渲染一个页面。如果没有,则渲染到另一个页面。我不认为我可以在这里使用 isset 吗?有人可以指出我正确的方向吗?谢谢!
您可以使用以下代码检查表是否具有属性:
$existData1 = $model->hasAttribute('data1'); // Return boolean true if the attribute exist in the model table.