dongyou7739 2014-01-25 08:25
浏览 42
已采纳

我们可以在没有Eloquent ORM的情况下使用Laravel Form Binding吗?

I am not using Eloquent ORM for Laravel 4 and willing to bind my Model with Edit Form using model binding. My code is given below:

Routes.php

Route::get('/', 'HomeController@index');
Route::get('exchanges', 'Exchange@index');
//Route::get('details/{exchangeID}', 'Exchange@details');

//add question to make the parameter option
Route::get('details/{exchangeID?}', function($exchangeID = 0)
{
    return App::make('Exchange')->details($exchangeID);
});

//Admin Dashboard
Route::get('admin', 'Exchange@dashboard');
//Route::get('admin/exchange/edit/{exchangeID?}', function($exchangeID = 0)
//{
//    return App::make('Exchange')->edit($exchangeID);
//});
Route::model('exchange', 'ExchangeModel');
Route::get('admin/exchange/edit/{exchange}', array('uses' => 'Exchange@edit', 'as' => 'exchange.edit'));

Controller Method

public function edit(ExchangeModel $exchange)
    {
             return View::make('exchangeedit')->with('exchange', $exchange);

VIew

{{ Form::model($exchange, array('route' => array('exchange.edit', $exchange->id))) }}
        {{ Form::close() }}

Model

public static function all()
    {
        return DB::select('select * from Exchanges');
    }

However When I visit: http://localhost/path/site/public/admin/exchange/edit/4 It considers it a 404 and redirects to a 404 page. Where am I going wrong?

  • 写回答

2条回答 默认 最新

  • doukan5332 2014-01-26 01:00
    关注

    The 404 error is being generated by your Route model binding Route::model(). If you are not using Eloquent, route model binding won't function as expected without additional work (mainly making sure your desired class has a find() method, which will return the record you need).

    You do not need to use route model binding in order to use Form model binding. These are two different features, neither of which depend on the either.

    Form model binding does NOT require an Eloquent model instance. It can be any array or object with the correct properties / keys. Here's an excerpt from Illuminate\Html\FormBuilder.php that is responsible for finding a model attribute:

    protected function getModelValueAttribute($name)
    {
        if (is_object($this->model))
        {
            return object_get($this->model, $this->transformKey($name));
        }
        elseif (is_array($this->model))
        {
            return array_get($this->model, $this->transformKey($name));
        }
    }
    

    object_get() and array_get() are Laravel helper functions, if you want to look into them further.

    So you do not need an Eloquent model to use form model binding, but you will probably want to use it when using route model binding. :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?