Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
示例代码:
$price = 75; $app->post('/update/price', function() use ($price) { $price += 20; });
在 Slim 中,每次触发 ajax 时,全球价格始终为 75。如何从我的路线更改全球价格(更改范围)?我搜索了苗条的论坛,但只有这样的答案:使用数据库、cookies、缓存等。我想使用更优雅的东西
我认为你的代码是正确的。你能告诉我我的代码的输出吗?所以我可以弄清楚你的代码有什么问题。可能是您的请求与此路线不匹配。
$price = 75; $app->post('/update/price', function() use ($price) { $price += 20; var_dump($price); die(); });