// get all patch data...
$params = $this->request->getPatch();
// try to get username from patch data
$name = $this->request->getPatch('username');
// try to get and format price
$price = $this->request->getPatch('price', 'float!');
只需要在依賴注入自己的Request class,就可以在專案中呼叫getPatch()方法
$di->set('request', function() {
return new \Request();
}, true);
沒有在網路上找到解決方案,自己基於phalcon的request物件實作了
getPatch()
和hasPatch()
。具體的用法:
只需要在依賴注入自己的Request class,就可以在專案中呼叫getPatch()方法
具體的程式碼在Github:
https://github.com/baohanddd/...