方法参数错误:id
来源:3-6 获取请求参数
一坨普信男
2019-05-17
Route::rule(‘hello’,‘sample/test/hello’,‘GET’,[‘https’=>false]);
Route::get(‘hello/:id’,‘sample/test/hello’);
<?php
namespace app\sample\controller;
class Test
{
public function hello($id,$name)
{
echo $id;
echo '|';
echo $name;
return 'hello';
}
}
写回答
1回答
-
你这样提问也太不认真了吧。起码好好整理下语言、描述、错误信息,代码格式,我才能帮助到你啊。
00
相似问题