例如要插入以下表数据,在tp框架中就不能D('php_goods_attr')->xxx;会直接报错,应该先去掉前缀然后把下划线省略并且大写下划线首字母就可以了,D('goodsAttr')->xxx;完成:
image.png
$arr = array(
'goods_id' => $data['goods_id'],
'attr_id' => $k,
'attr_value' =>$vv
);
D('GoodsAttr')->add($arr);
完成写入操作
网友评论