<img src="{{$post->image}}" width="140" height="140">
这是我用来从数据库获取图像以查看文件的行
我用贝娄控制器得到这个图像
public function show($id)
{
$post=Clients::find($id);
return view('pet.shw',['post'=>$post,'pets'=>$post->pets]); }
迁移文件如下所示
public function up()
{
Schema::create('clients', function (Blueprint $table) {
$table->increments('id');
$table->string('ename');
$table->string('mobile');
$table->string('mail');
$table->binary('image') ; //image that i wanna use
$table->mediumText('Discription');
$table->timestamps();
});
}
这种方法不起作用视图显示这样我如何解决这个问题,建议新的方法更好,我不能使用公共/存储文件夹,因为所有的图像都应该保存在数据库中
1条答案
按热度按时间ecfdbz9o1#
试试这个
或者,您可以用以下内容替换图像行
要动态设置mime类型,请创建一个helper函数并使用它
并使用blade模板中的帮助功能,如下所示