我有一個名爲A1Controller
的自定義控制器,它有一個名爲actionGetdetails
的動作。我如何在瀏覽器中執行此操作?我試過http://localhost/Yii2basicapp/web/a1/getdetails
,但它不起作用。 這是我在web.php文件如何直接在瀏覽器中執行操作?
`'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'a1'],
],
],`
感謝您的答案,但它不能解決問題。 –