我正在处理后端,我想知道如何从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
。