chenhao 4 years ago
parent
commit
603738eb54

+ 2 - 0
application/index/controller/Index.php

@@ -68,6 +68,8 @@ class Index extends Controller
 
         if ($isReg) return $this->error('该手机号已被注册');
 
+        $data['avatar'] = 'uploads/avatar.png';
+
         $register = Db::name('user')->insert($data);
 
         if ($register) {

+ 5 - 3
application/index/controller/User.php

@@ -104,13 +104,15 @@ class User extends Api
         $data['create_time'] = date('Y-m-d H:i',time());
 
 
-        $paths = $data['image'];
+        $paths = json_decode($data['image'],true);
+
+
 
         if (!empty($paths)) {
             $str = '';
             foreach ($paths as $v) {
 
-                $image = $v['path'];
+                $image =json_encode($v, JSON_FORCE_OBJECT);
 
                 $imageName = "25220_" . date("His", time()) . "_" . rand(1111, 9999) . '.png';
                 if (strstr($image, ",")) {
@@ -126,7 +128,7 @@ class User extends Api
 
                 $r = file_put_contents($this->app->getRootPath() . "public/" . $imageSrc, base64_decode($image));//返回的是字节数
                 if ($r) {
-                    $str = $str . 'http://degao.hdlkeji.com' .$imageSrc . '|';
+                    $str = $str . 'http://degao.hdlkeji.com/' .$imageSrc . '|';
                 }
             }
 

BIN
public/uploads/avatar.png


BIN
public/uploads/images/20210312/25220_152717_3982.png


BIN
public/uploads/images/20210312/25220_152717_5202.png


BIN
public/uploads/images/20210312/25220_152717_8566.png


BIN
public/uploads/images/20210312/25220_152740_6728.png


BIN
public/uploads/images/20210312/25220_152740_8000.png


BIN
public/uploads/images/20210312/25220_152740_9959.png