我在yii2 rest api Using this reference.中集成了braintree方法。我想更新客户,但我收到以下错误:
缺少Braintree \ Customer :: update()
的参数2
以下是我的代码:
$braintree = Yii::$app->braintree;
$response = $braintree->call('Customer', 'update','15552090',[
'firstName' => 'test-1545',
'lastName' => 'asdf',
'company' => 'New Company',
'email' => 'new.email@example.com',
'phone' => 'new phone',
'fax' => 'new fax',
'website' => 'http://new.example.com'
]);
print_r($response); die;
我在这里堆叠如何传递参数?
答案 0 :(得分:1)
这是特定扩展的问题。请参阅Github上的this issue。
问题OP推荐此修复:
public function call($command, $method, $values, $values2 = null)
{
$class = strtr("{class}_{command}", [
'{class}' => $this->_prefix,
'{command}' => $command,
));
if ($values2) {
return call_user_func(array($class, $method), $values, $values2);
else {
return call_user_func(array($class, $method), $values);
}
}
虽然扩展作者建议:
if (is_array($values)) {
call_user_func_array(...);
} else {
call_user_func(...);
}
无论哪种方式,您都需要使用自己的组件覆盖此组件并应用修补程序。
请注意,应用程序中的代码量很小(一个文件中有64行),因此您可以创建自己的包装器或找到更好的包装器,因为这个问题仍然没有解决。
也许最好直接使用braintree_php方法,这些方法比神奇的call
更清晰。
更新要覆盖组件,请创建从bryglen扩展的自己的类,例如,如果使用高级应用,请将其放在common/components
文件夹中。
namespace common\components;
class Braintree extends \bryglen\braintree\Braintree
{
public function call($command, $method, $values)
{
// Override logic here
}
}
然后用config中的自定义名称替换扩展类名称:
'components' => [
'braintree' => [
'class' => 'common\components\Braintree',
'environment' => 'sandbox',
'merchantId' => 'your_merchant_id',
'publicKey' => 'your_public_key',
'privateKey' => 'your_private_key',
],
],