我已经创建了一个插入过程,但是不知道如何在控制器和模型中调用参数“名称”和“路径”
存储过程:
CREATE DEFINER=`root`@`localhost`
PROCEDURE `insert_document_details`
(IN `name` VARCHAR(50), IN `path` VARCHAR(255) )
BEGIN
INSERT INTO `document_details`
(`document_name`, `document_path`)
VALUES (name,path);
END
路线:
Route::post('insert_document_details/{name}/{path}',array('as'=>'insert_document_details',
'uses'=>'AuthorsController@post_document_details'));
AuthorController:
class AuthorsController extends BaseController{
public $restful = true;
public function post_document_details($name,$path)
{
$document_details=Response::json(Author::insert_document_details_Call());
return $document_details;
}
}
作者(模型):
class Author extends Eloquent {
public $table = 'document_details';
protected $primaryKey = 'id';
public static function insert_document_details_Call($name,$path)
{
return DB::select('call insert_document_details');
}
}
解决方法:
第二个参数列表可以按如下方式传递
DB::select('call insert_document_details(?,?)',array($name,$path));
要么
DB::statement('call insert_document_details(' . DB::raw($name) . ',' . DB::raw($path) . ')');