我正在使用Idiorm并希望更新
中列名为“path”的行Error: Uncaught (in promise): TypeError: Cannot read property 'query' of null
但是,当运行此命令时,响应错误为:
$image = ORM::for_table('shop_product_images')->find_one($productId);
$image->path = '/img/shop/products/'.$name;
$image->save();
指向查询的第一行。
我应该注意创建查询是否正常工作:
Fatal error: Class 'Controller\ORM' not found