码迷,mamicode.com
首页 > 其他好文 > 详细

二维码生成插件qrious

时间:2018-11-24 11:27:52      阅读:628      评论:0      收藏:0      [点我收藏+]

标签:生成二维码   native   tofixed   text   nbsp   编写   ota   angularjs   new   

一.引入qrious.min.js

二.二维码显示处

    <script type="text/javascript" src="plugins/angularjs/angular.min.js"></script><!--引入js-->

 <img id="qrious" ><!-- 二维码显示处-->

三.编写js代码

app.controller(‘payController‘,function ($scope,payService) {
   //生成订单支付微信二维码
    $scope.createNative=function () {
        payService.createNative().success(
            function (response) {
                $scope.code_url=response.code_url;
                $scope.out_trade_no=response.out_trade_no;
                $scope.total_fee=(response.total_fee/100).toFixed(2);
               //生成二维码
                var qr=new QRious({
                    element:document.getElementById(‘qrious‘),
                    size:250,
                    level:‘H‘,
                    value:$scope.code_url  //二维码需要的url
                });
            }
        )

    }

})

 

二维码生成插件qrious

标签:生成二维码   native   tofixed   text   nbsp   编写   ota   angularjs   new   

原文地址:https://www.cnblogs.com/georgeJavaEE/p/10010696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!