同一视图中的多个表格!空白页SLIM 3 psr-4

时间:2017-04-23 17:37:57

标签: php slim

我在同一页面上有四个表格。 我不能在同一视图的帖子中有两条路线...... 为了验证数据,我在帖子中创建了一个条件,里面有条件,我在每个表单中创建了隐藏的输入。

在我的路线中 - >

$app->post('/settings', function($request, $response) use($app){
        $inf = $request->getParam('inf');  // check value of input hidden 
        if($inf == '1'){
            UserInfoController::class  . ':postChangeInfo';
        }
        else if ($inf == '2'){
            PasswordController::class  . ':postChangePassword';
        }
       else if ($inf == '3'){

        }});

因此,当我提交时,我有一个状态为200的空白页面!我不明白......

所以经过测试后,当我这样做时它可以工作,但它需要从我的页面中获取所有形式,而不是我想要的那个

$app->post('/settings',  PasswordController::class  . ':postChangePassword';)

请帮帮我

0 个答案:

没有答案