We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public function configForJSSDKPayment($prepayId) { $config = $this->configForPayment($prepayId, false);
// $config['timestamp'] = $config['timeStamp']; // unset($config['timeStamp']);
return $config; }
里面的timeStamp参数微信是要求驼峰写法的
The text was updated successfully, but these errors were encountered:
https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115
Sorry, something went wrong.
WeixinJSBridge才是驼峰写法,jssdk是全小写,感谢。 ps:微信大坑
No branches or pull requests
public function configForJSSDKPayment($prepayId)
{
$config = $this->configForPayment($prepayId, false);
// $config['timestamp'] = $config['timeStamp'];
// unset($config['timeStamp']);
里面的timeStamp参数微信是要求驼峰写法的
The text was updated successfully, but these errors were encountered: