yii2 easy wechat
1.0.3: Merge pull request #13 from jonneyless
overtrue/wechat을 기반으로 하는 yii2용 WeChat SDK입니다.
이 확장 프로그램은 간단하고 친숙한 방식으로 overtrue/wechat
애플리케이션에 액세스하는 데 도움이 됩니다: Yii::$app->wechat
.
composer require maxwen/yii2-easy-wechat
config/main.php
에 SDK를 yii2 애플리케이션 component
로 추가합니다.
' components ' => [
// ...
' wechat ' => [
' class ' => ' maxweneasywechatWechat ' ,
// 'userOptions' => [] # user identity class params
// 'sessionParam' => '' # wechat user info will be stored in session under this key
// 'returnUrlParam' => '' # returnUrl param stored in session
],
// ...
]
// here are two representative examples that will help you:
// 微信网页授权:
if (Yii:: $ app -> wechat -> isWechat && !Yii:: $ app -> wechat -> isAuthorized ()) {
return Yii:: $ app -> wechat -> authorizeRequired ()-> send ();
}
// 微信支付(JsApi):
$ orderData = [
' openid ' => ' .. '
// ... etc.
];
$ order = new WechatOrder ( $ orderData );
$ payment = Yii:: $ app -> wechat -> payment ;
$ prepayRequest = $ payment -> prepare ( $ order );
if ( $ prepayRequest -> return_code = ' SUCCESS ' && $ prepayRequest -> result_code == ' SUCCESS ' ) {
$ prepayId = $ prepayRequest -> prepay_id ;
} else {
throw new yii base ErrorException ( '微信支付异常, 请稍后再试' );
}
$ jsApiConfig = $ payment -> configForPayment ( $ prepayId );
return $ this -> render ( ' wxpay ' , [
' jsApiConfig ' => $ jsApiConfig ,
' orderData ' => $ orderData
]);
overtrue/wechat
애플리케이션은 항상 $options
매개변수로 구성됩니다. params.php
에서 yii2 매개변수로 옵션을 만들었습니다.
권장되는 방법:
// in this way you need to create a wechat.php in the same directory of params.php
// put contents in the wechat.php like:
// return [
// // wechat options here
// ];
' WECHAT ' => require ( __DIR__ . ' /wechat.php ' ),
또는
' WECHAT ' => [ // wechat options here ]
Wechat 옵션은 도움말 문서를 구성합니다.
EasyWeChat 문서를 참조하세요.
overtrue/wechat
덕분에 wechat SDK를 사용하여 플레이할 수 있는 쉬운 방법이 생겼습니다.
yii2-ckeditor-위젯
yii2-adminlte-gii
yii2-컬