我想将图像保存在本地驱动器中,并将其路径插入数据库,然后通过网站预览图像。我不知道该怎么做,而且在任何地方都找不到类似的东西。
答案 0 :(得分:0)
您可以尝试执行此操作:
// To save image on local drive and insert path to db.
if ($request->hasFile('image') && $request->file('image')->isValid()) {
$path = $request->image->store('public/images');
$path = basename($path);
$image = new Images();
$image->photo = $path;
$image->save();
}
我希望这会有所帮助。
答案 1 :(得分:0)
尝试这个
public class ClaimClient : Client
{
public int ClaimClientID { get; set; }
public bool IsContactable { get; set; }
}
希望这会有所帮助:)