微擎开发-公众号支付配置代码解析

       最近的项目是微信订阅号报名活动,老板说基于微擎开发。于是了解微擎去了,看过之后觉得微擎是一个很强大的公众号管理应用。尤其是他各种各样以及非常多的插件。真的很实用。今天弄公众号支付配置。

模板文件在web\themes\default\profile\payment.html中

	                                                      <div class="form-group">
									<label for="" class="control-label col-sm-2">微信支付商户号</label>
									<div class="form-controls col-sm-10">
										<input type="text" name="" ng-model="paysetting.wechat.mchid" class="form-control" placeholder="">
										<span class="help-block">
											财付通商户权限密钥
										</span>
									</div>
								</div>



<script>
	angular.module('profileApp').value('config', {
		'paysetting' : {php echo json_encode($pay_setting)},
		'saveurl' : "{php echo url('profile/payment/save_setting')}",
		'text_alipay_url' : "{php echo url('profile/payment/test_alipay')}",
		'borrows' : {php echo json_encode($proxy_wechatpay_account['borrow'])},
		'get_setting_url' : "{php echo url('profile/payment/get_setting')}",
		'account_level' : "{$accounts[$_W['acid']]['level']}"
	});
	angular.bootstrap($('.js-profile-payment'), ['profileApp']);
</script>



<input type="text" name="" ng-model="xxxxxx" class="form-control" placeholder="">


AngularJS ng-model 指令   :http://www.runoob.com/angularjs/ng-ng-model.html





控制器代码在\web\source\profile\payment.ctrl.php中


if ($do == 'display') {
	$proxy_wechatpay_account = account_wechatpay_proxy();
	//$_W['uniacid']是当前公众号id
	$setting = uni_setting_load('payment', $_W['uniacid']);
	$pay_setting = is_array($setting['payment']) ? $setting['payment'] : array();
	if (empty($pay_setting['delivery'])) {
		$pay_setting['delivery'] = array('switch' => false);
	}
	if (empty($pay_setting['credit'])) {
		$pay_setting['delivery'] = array('switch' => false);
	}
	if (empty($pay_setting['alipay'])) {
		$pay_setting['alipay'] = array('switch' => false);
	}
........




主要的就是   $setting = uni_setting_load('payment', $_W['uniacid']);   这行代码

uni_setting_load()这个函数执行后获取指定公号的设置项函数。




写的很仔细的微擎社区文档    http://www.phpos.net/weiqing/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值