// 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/...