0

我正在处理后端,我想知道如何从backbone.js. 我想将该参数存储name在我的数据库中。在这里,以下是我的文件:

路线:

Route::post('insert_document_details',array('as'=>'insert_document_details',
    'uses'=>'AuthorsController@post_document_details'));

控制器:

public function post_document_details()
{   

    // Store the original input of the request and then replace the input with your request instances input.
    $response = Request::input();

    $document_details=Response::json(Author::insert_document_details_Call($response));
    return $document_details;
}

模型:

public static function insert_document_details_Call($response)
{    
     return DB::select('call insert_document_details');
}

这里,insert_document_details是一个用于在需要参数的数据库中插入数据的存储过程name

4

1 回答 1

3

使用 Laravel 中的Input类:http: //laravel.com/docs/requests#basic-input

于 2013-08-09T14:20:41.713 回答