Get PUT params with Slim PHP

后端 未结 2 1619
隐瞒了意图╮
隐瞒了意图╮ 2021-01-17 11:11

I searched, but I didn\'t find an answer. I have a RESTful API to manage a basic CRUD. I\'m trying to create an update method using PUT, but I can\'t retrieve the params val

2条回答
  •  悲&欢浪女
    2021-01-17 11:46

    $app->request->put() is returning a null value...

    so u can use try $app->request->params instead

提交回复
热议问题