作者 景龙
1 个管道 的构建 失败 耗费 5 秒

修改图片路径加域名

... ... @@ -73,6 +73,18 @@ trait Backend
{
if ($this->request->isPost()) {
$params = $this->request->post("row/a");
$host = 'http://feipin.w.brotop.cn';
if(isset($params['image']) && !empty($params['image'])){
$params['image'] = $host.$params['image'];
}
if(isset($params['images']) && !empty($params['images'])){
$images = explode(',',$params['images']);
$img = '';
foreach($images as $value){
$img .= $host.$value.',';
}
$params['images'] = trim($img,',');
}
if ($params) {
if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
$params[$this->dataLimitField] = $this->auth->id;
... ...
... ... @@ -147,13 +147,14 @@ class Person extends Api
$this->error('最多上传9张图片');
}
$date = date('Ymd',time());
$host = config('site.hostUrl');
$images = '';
foreach($files as $file){
//移动到框架应用根目录/public/uploads/ 目录下
//允许文件大小200k
$info = $file->validate(['size'=>204800,'ext'=>'jpg,png,gif'])->move(ROOT_PATH . 'public' . DS . 'uploads');
if($info){
$images .= '/uploads/'.$date.'/'.$info->getFilename().',';
$images .= $host.'/uploads/'.$date.'/'.$info->getFilename().',';
}else{
// 上传失败获取错误信息
$this->error($file->getError());
... ...
... ... @@ -62,6 +62,8 @@ return array (
//设置积分规则(分享购买,分享卖废品)
'share_purchase' => 150,
'share_sell' => 50,
//域名
'hostUrl' => 'http://http://feipin.w.brotop.cn',
//验证规则
'user_id' => [
'rule' => [
... ...