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条)

报告相同问题?

悬赏问题

  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图