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

测试

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