- 小程序微信支付成功之后不走回调是怎么回事?
https://cjdx.shangmangs.com/api/Notify/notify 这个是回调地址 public function notify() { $donationModel = new Donation(); $zhengshuModel = new Zhengshu(); //存储微信的回调 $xml = file_get_contents("php://input"); $arr = $this -> XmlToArr($xml); if(empty($arr['out_trade_no'])){ exit; } $out_trade_no = $arr['out_trade_no']; $openid=$arr['openid'];//openid $sign=$arr['sign'];//校验码 $total_fee=$arr['total_fee'];//订单金额 $transaction_id=$arr['transaction_id'];//微信支付号 //订单表有无 $count=$donationModel->where("out_trade_no='".$out_trade_no."'")->count(); //判断有无订单 $myfile = fopen("newfile.txt", "w") or die("Unable to open file!"); $txt = $out_trade_no."\n"; fwrite($myfile, $txt); $txt = $openid."\n"; fwrite($myfile, $txt); $txt='count:'.$count; fwrite($myfile, $txt); fclose($myfile); if($count==1) { //这里是回调之后数据库操作 } echo 'success'; }
2021-04-14 - 如何使text组件的user-select的属性变为inline?
官方文档中提到,text组件的selectable属性废弃,调整为user-select属性。但user-select属性会表现为display:inline-block,而业务中仍然需要表现为display:inline。在text组件中直接设置style="display:inline"无效果。
2021-01-21