最后测试结果报错什么原因
来源:9-9 商品详情接口分析与初步编写
千寻情夭夭
2019-03-20
最后测试结果是这样的
写回答
2回答
-
粉肠阿辰
2019-04-01
查询方法里别加空格
比如本节里:
$product = self::with('imgs,properties')
->find($id);self::with('')中的查询字段加空格就会报你这样的错误
// 比如
$product = self::with(' imgs,properties')
->find($id);// 或者
$product = self::with('imgs, properties')
->find($id);00 -
7七月
2019-03-20
从这个信息只能看出,img是不存在的。至于代码怎么写错的,还需要调试呀。可以对下源码看看。
00
相似问题