Laravel API返回图像链接? - 问答 - 云+社区 - 腾讯云

对于我的laravel api,我在json中返回一个包含标题和图像链接的对象。

但在laravel我不知道在哪个文件夹以及如何返回将在移动应用程序上显示的图像的完整链接。

数据保存在mysql数据库中

例:

{
   "title" : "example",
   "image" : "http://www.example.com/images/example.png"
}

我添加一个测试路线:

Route::get('v1/pictures/{filename}',function($filename){
    return asset('/storage/app/public/images/'.$filename);
});

Original url: Access

Created at: 2018-09-28 20:09:27

Category: default

Tags: none

请先后发表评论
  • 最新评论
  • 总共0条评论