编程语言
首页 > 编程语言> > php – Laravel4:上传照片

php – Laravel4:上传照片

作者:互联网

我被困了..
我想添加以通过表单添加新照片的可能性.
我正确设置了Photo资源.
表格照片包括:id,title,caption,path:string.

这是我在视图photo.create中直到现在所做的表格:

{{ Form::open(array('route' => 'photos.store'),'image/save', array('files'=> true)) }}

 {{ Form::label('title', 'Title: ') }}
 {{ Form::text('title') }}

 {{ Form::label('caption', 'Caption: ') }}
 {{ Form::textarea('caption') }} <br>

 {{ Form::submit('Add Photo', array('class' => 'btn btn-primary' )) }}

 {{ Form::close() }}

如何添加按钮,选择新文件?

谢谢!!

编辑:

这是我到目前为止所做的简单商店方法:

public function store()
{
    $input = Input::all();

    $rules = array('title' => 'required', 'path' => 'required');

    $validation = Validator::make($input, $rules);

    if ($validation->passes()) 
    {

        $photo = new Photo();
        $photo->title = $input['title'];
        $photo->caption = $input['caption'];
        $photo->path = $input['path'];

        $photo->save();

        return Redirect::route('photos.index');
    }

    return Redirect::back()->withInput()->withErrors($validation)->with('message','There were validation message');

}

我怎样才能正确地在那里实现检索文件并存储在public / img中的文件夹中?
然后,我如何保存该路径并放入$photo->路径?

非常感谢你!!

解决方法:

使用Form :: file(‘image’)

然后,您可以使用Input :: file(‘image’)检索上传的文件,并使用Input :: file(‘file’) – > move(YOUR_DESTINATION_PATH)将其移动到目的地.

参考文献:http://laravel.com/docs/requests#fileshttp://laravel.com/docs/html#file-input

编辑:

将上传的文件存储到public / img:Input :: file(‘file’) – > move(base_path().’/ public / img’);

在数据库中存储路径:

$photo->path = base_path() . '/public/img' . Input::file('file')->getClientOriginalName(); // if you want your real path on harddrive

要么

$photo->path = URL::to('img/' . Input::file('file')->getClientOriginalName()); // if you want an exploitable path for http render

第二次编辑
请参阅表格http://paste.laravel.com/KX9上的更正

@extends('master')
@section('blog')
<div class="span12 well">
    {{ link_to_route('photos.index', 'Back to index') }}
</div>

<div class="span12 well">
   {{ Form::open(array('route' => 'photos.store', 'files'=> true)) }}
     {{ Form::label('title', 'Title: ') }}
     {{ Form::text('title') }}
     {{ Form::label('caption', 'Caption: ') }}
     {{ Form::textarea('caption') }} 
     {{ Form::label('image', 'Image: ') }}
     {{ Form::file('image') }}
     <br>
     {{ Form::submit('Add Photo', array('class' => 'btn btn-primary' )) }}
   {{ Form::close() }}
   <br><br>
   @if($errors->any())
      {{ implode('', $errors->all('<li class="error">:message</li>')) }}
   @endif
</div>
@stop

标签:php,laravel,forms,laravel-4,photo-gallery
来源: https://codeday.me/bug/20190823/1695892.html