param(); $this->validate($params, ['poster_location|海报位置' => 'require']); $find = ModelPoster::field([ 'poster_img' => 'imgSrc', 'poster_title' => 'title', 'poster_describe' => 'text', ]) ->where('poster_location', $params['poster_location']) ->find(); return msg(0, '获取海报详情成功!', ['data' => $find]); } }