2016-09-14 84 views
3

在那里我使用两个输入文件,一个隐藏和一个可见,在这里我想尝试如何调用输入到控制器,但有错误调用成员函数getRealPath()null,如何调用隐藏在表单中的输入文件。谢谢您的回答从窗体中读取文件输入时始终出错

在这里控制器脚本:

public function postPhoto() 
    { 
     $photo = Input::file('photo')->getRealPath(); 

     if($this->cekUkuranFoto($photo) == false) 
     { 
      Session::flash('message', 'size too big 2048 x 2048 !'); 
      return redirect()->back(); 
     } 
} 
public function cekUkuranFoto($file) 
    { 
     $gambar = Image::make($file); 
     $ukuran = getimagesize($file); 
     $width=$ukuran[0]; 
     $height=$ukuran[1]; 

     if($width < 2048 && height < 2048) 
     { 
      return true; 
     } 
     else 
     { 
      return false; 
     } 
    } 

这里形成的观点:

<form method="GET" action="{!! URL::to('/timeline/photo') !!}" files="true" enctype="multipart/form-data"> 
       <div class="box-body"> 
        <div class="form-group"> 
        <input name='photo' id="file-image" type='file' onchange="readURL(this);" style="visibility:hidden;"/> 
        <p class="help-block">Maksimal ukuran foto 1500 x 1000 pixel</p> 
        <div class="col-sm-6"> 
        <img id="image-responsive" class="img-responsive img-bordered-sm" src="{!! url('/').'/protected/public/assets/images/default.png' !!}" height=128 alt="your image"/><br/> 
        <input name="photo2" type="button" id="my-button" class ="btn btn-info" accept=".jpg,.jpeg,.png" value="Pilih Foto"> 
        <button type="button" class="btn btn-danger" onclick="hapusGambar()" >Hapus</button> 
        </div> 
        <div class="col-sm-6"> 
        <textarea name="photoinput" class="form-control" rows="6" placeholder="Deskripsi">{!! Input::old('photoinput') !!}</textarea> 
        </div> 
       </div> 
       </div> 
       <div class="box-footer"> 
        <button type="submit" class="btn btn-info pull-right">Posting</button> 
       </div> 
       </form> 

在路线:

Route::get('/timeline/photo', '[email protected]'); 

回答

3

它不会与GET方法工作:

method="GET" 

您应该将其更改为POST。您的路线还有:

Route::post('/timeline/photo', '[email protected]'); 
+0

感谢您的回答。有用 –