1
嗨,我正在學習樹枝,我卡住了。它不檢查表單是否被提交,所以我的猜測是不正確的。 任何人都可以指點我一個正確的方式。苗條樹枝檢查方法=張貼
{% if method == 'POST' %}
Method posted
{% endif %}ˇ
我get函數
$app->get('/p/:id', function ($id) use ($app) {
$pDItem = $app->pD->where('id', $id)->first();
if (!$pDItem) {
$app->notFound();
}
$app->render('pD/pDItem.php', [
'pDItem' => $pDItem,
'method' => $app->request->getMethod()
]);
})->name('pD.item');
-