我正在开发后端,我想知道如何从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
的数据库中插入数据的存储过程。