作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

测试

... ... @@ -516,7 +516,7 @@ class User extends Api
{
$post = $this->request->post();
$model = UserSize::detail($this->user['id'], $post['user_size_id']);
$this->success($model->edit($post));
$this->success(json_encode($model->edit($post)));
if(empty($model)){
$this->error(__('尺寸信息不存在'));
}
... ...
... ... @@ -79,13 +79,13 @@ class UserSize extends Model
empty($data['isdefault']) && $data['isdefault'] = '0';
// 该地址设为默认,其他地址就设为非默认
if($data['isdefault'] == '1'){
return 1;
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
}
// 对象转json字符串
if(!empty($data['body_info']) && is_array($data['body_info'])){
$data['body_info'] = json_encode($data['body_info']);
}
return $data;
return $this->allowField(true)->save($data);
}
... ...