我如何将(id)url插入数据库Laravel

时间:2019-04-13 11:52:16

标签: php laravel

R:如何将(id)url插入数据库Laravel

我有这个 url

http://127.0.0.1:8000/admin/question/1

我需要将 id 保存到数据库

路线

Route::get('/question/{id}', 'questionController@choseType');
Route::post('/question/createone', 'questionController@storeData');

控制器

    public function storeData(Request $request)
    {
        $this->validate($request,[
            'name'=>'required',
            'department_id'=>'required',
            'nameChoose.*'=>'required',
        ],[],[
            'name'=>'question',
            'department_id'=>'department name',
            'nameChoose'=>'nameChoose',
        ]);

        //here i want to save the id of this table to the question table 
        // which exist in URL
        $question_type = question_types::pluck('id')->first();

        $question = new questions();
        $question->name = $request->input("name");
        $question->department_id = $request->input("department_id");
        $question->question_type_id = $question_type;
        $question->save();

     }

有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

您的问题不是很清楚。 我了解@storeData的功能,它将根据收到的请求创建一个新问题。 据我了解,您的/question/{id}路线可在发布问题本身之前“挑选”问题类型。正确的做法是您提交问题类型以及新的问题POST。在您的前台,您必须发出GET请求,接收数据库中所有可用的问题类型,并连同创建新问题的要求一起,发送先前从数据库中可用的问题类型中选择的问题类型。 / p>

@根据“问题的所有者”评论进行编辑:

如果您编辑到此的路线:

Route::post('/question/createone/{id}', 'questionController@storeData');

在您的控制器中,您可以执行以下操作:

public function storeData(Request $request, $id) //the Id from the route
{
    $this->validate($request,[
        'name'=>'required',
        'department_id'=>'required',
        'nameChoose.*'=>'required',
    ],[],[
        'name'=>'question',
        'department_id'=>'department name',
        'nameChoose'=>'nameChoose',
    ]);

    $question = new questions();
    $question->name = $request->input("name");
    $question->department_id = $request->input("department_id");
    $question->question_type_id = $id; //The id from the route
    $question->save();

}

无论如何,您的路线/question/{id}storeData函数是隔离的。