failException
failException
設(shè)置查詢(xún)數(shù)據(jù)為空時(shí)是否需要拋出異常,如果不傳入任何參數(shù),默認(rèn)為開(kāi)啟,用于select
和find
方法,例如:
// 數(shù)據(jù)不存在的話(huà)直接拋出異常
Db::name('blog')
->where(['status' => 1])
->failException()
->select();
// 數(shù)據(jù)不存在返回空數(shù)組 不拋異常
Db::name('blog')
->where(['status' => 1])
->failException(false)
->select();
或者可以使用更方便的查空?qǐng)?bào)錯(cuò)
// 查詢(xún)多條
Db::name('blog')
->where(['status' => 1])
->selectOrFail();
// 查詢(xún)單條
Db::name('blog')
->where(['status' => 1])
->findOrFail();
文檔最后更新時(shí)間:2018-04-26 09:48:28
未解決你的問(wèn)題?請(qǐng)到「問(wèn)答社區(qū)」反饋你遇到的問(wèn)題