当前位置:   article > 正文

基于Hbuilderx开发APP中的扫码功能,支持从相册扫描_hbuilder扫描二维码

hbuilder扫描二维码

使用原生集成的控件 barcode   调试时在PC端无法调试 需要build 或者云打包到真机上才可以调试

功能常见 点击扫描按钮,然后在此页面的基础上创建扫描页面并开始扫描

扫描控件 我是放在dialog(vant2)弹窗中的

此方法在点击扫描按钮后,会有一秒中的黑屏,各种百度和GPT搜,可能是创建扫描控件和初始化摄像头不及时造成,并且此方法在连续扫描时,极容易卡死在黑屏页面,此方法不推荐实际开发使用。仅做踩坑记录。

解决办法,在扫描控件创建好之前选择一个页面也代替黑屏,就是做个动画盖住黑屏,

  1. <template>
  2. <!--1.首先,弹窗页面中要有el-dialog组件即弹窗组件,我们把弹窗中的内容放在el-dialog组件中-->
  3. <!--2.设置:visible.sync属性,动态绑定一个布尔值,通过这个属性来控制弹窗是否弹出-->
  4. <el-dialog title="弹窗"
  5. :visible.sync="detailVisible"
  6. width="100%"
  7. top="50px"
  8. fullscreen
  9. align-center
  10. append-to-body
  11. class="dialog">
  12. <div class="barcode">
  13. <!-- <header class="header"> -->
  14. <!-- <el-button
  15. class="filter-item"
  16. style="margin-right: 80px;height: 39px;font-size: 16px;"
  17. type="primary"
  18. @click="closeScan"
  19. :loading="btnLoading"
  20. >返回</el-button
  21. > -->
  22. <!-- <el-button
  23. class="filter-item"
  24. style="margin-right: 80px;height: 39px;font-size: 16px;"
  25. type="primary"
  26. @click="scanImg"
  27. :loading="btnLoading"
  28. >相册</el-button
  29. > -->
  30. <div class="head-bar">
  31. <p class="canle" @click="clickIndexLeft">取消</p>
  32. <p class="picture" @click="scanImg">相册</p>
  33. </div>
  34. <!-- <p @click="closeScan">返回</p>
  35. <p @click="scanImg">相册</p> -->
  36. <!-- </header> -->
  37. <div id="bcid">
  38. <!-- <div style="height:20%"></div> -->
  39. </div>
  40. </div>
  41. </el-dialog>
  42. </template>
  43. <script>
  44. var barcode = null;
  45. export default {
  46. name: "dialogComponent",
  47. props: ['articles'],
  48. data(){
  49. return{
  50. detailVisible:false,
  51. result: "",
  52. resultInfo:[]
  53. }
  54. },
  55. mounted() {
  56. //跳转时自动开启
  57. var currentWebview = plus.webview.currentWebview().opener();
  58. this.creatBarCode(currentWebview);
  59. },
  60. beforeDestroy() {
  61. barcode && barcode.close()
  62. barcode = null
  63. },
  64. methods:{
  65. // 通过设置detailVisible值为true来让弹窗弹出,这个函数会在父组件的方法中被调用
  66. init(data){
  67. this.detailVisible=false;
  68. },
  69. // 创建扫描控件
  70. creatBarCode(currentWebview) {
  71. // 隐藏当前窗口
  72. plus.navigator.setStatusBarBackground('#000000');
  73. plus.navigator.setStatusBarStyle('light');
  74. plus.webview.currentWebview().hide();
  75. barcode = new plus.barcode.Barcode("bcid", [plus.barcode.QR,plus.barcode.EAN13,plus.barcode.EAN8], {
  76. background: '#000000',
  77. frameColor: '#07c160',
  78. scanbarColor: '#07c160',
  79. top: "0px",
  80. left: '0px',
  81. width: '100%',
  82. height: '580px',
  83. position: 'static'
  84. });
  85. barcode.onmarked = this.onmarked //扫码成功
  86. barcode.onerror = this.onerror //扫码失败
  87. plus.webview.currentWebview().append(barcode);
  88. barcode.start()
  89. // 显示当前窗口
  90. plus.webview.currentWebview().show('slide-in-right', 300);
  91. console.log("开始扫描")
  92. },
  93. onmarked(type, result) {
  94. var text = '未知: ';
  95. switch (type) {
  96. case plus.barcode.QR:
  97. type = "QR";
  98. break;
  99. case plus.barcode.EAN13:
  100. type = "EAN13";
  101. break;
  102. case plus.barcode.EAN8:
  103. type = "EAN8";
  104. break;
  105. }
  106. this.result = result.replace(/\n/g, "");
  107. barcode.close();
  108. this.$emit('dialogClose');
  109. this.$emit('receive');
  110. console.log("弹窗扫描结果" + result)
  111. },
  112. // 识别失败
  113. onerror(err) {
  114. alert("扫码失败");
  115. console.log('扫码失败', JSON.stringify(err))
  116. barcode && barcode.close();
  117. barcode = null;
  118. },
  119. // 关闭返回
  120. closeScan() {
  121. // barcode.close();
  122. this.$emit('dialogClose');
  123. },
  124. // 从系统相册选择文件
  125. scanImg() {
  126. window.plus.gallery.pick(
  127. (path) => {
  128. window.plus.barcode.scan(
  129. path,
  130. (type, result) => {
  131. this.result = result.replace(/\n/g, '');
  132. barcode.close();
  133. this.$emit('dialogClose');
  134. this.$emit('receive');
  135. console.log("弹窗扫描结果" + result)
  136. },
  137. () => {
  138. alert('QR Code not found');
  139. }
  140. )
  141. }
  142. ), {
  143. filters: "images"
  144. }
  145. },
  146. }
  147. }
  148. </script>
  149. <style lang="scss">
  150. .head-bar{
  151. position: relative;
  152. top: -388px;
  153. width: 100%;
  154. height: 35px;
  155. background-color: #42a5ff;
  156. color: #fff;
  157. }
  158. .canle{
  159. float: left;
  160. margin-left: 10px;
  161. margin-top: 7px;
  162. }
  163. .picture{
  164. float: right;
  165. margin-right: 10px;
  166. margin-top: 7px;
  167. }
  168. .dialog{
  169. // margin-top: 50px;
  170. }
  171. .barcode {
  172. position: relative;
  173. top: 0px;
  174. height: 300px;
  175. border-color: pink;
  176. #bcid {
  177. width: 100%;
  178. position: absolute;
  179. left: 0;
  180. right: 0;
  181. height: 350px;
  182. top: -353px;
  183. bottom: 0px;
  184. text-align: center;
  185. color: #fff;
  186. background: #ccc;
  187. background-color: #42a5ff;
  188. }
  189. header{
  190. position: absolute;
  191. display: flex;
  192. justify-content: space-between;
  193. font-size: 20px;
  194. color: #009DE2;
  195. width: 65%;
  196. left: 0.3rem;
  197. top: 0px;
  198. bottom: 40px;
  199. right: 0.3rem;
  200. height: 1rem;
  201. line-height: 1rem;
  202. z-index: 999999;
  203. }
  204. }
  205. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/854700
推荐阅读
相关标签
  

闽ICP备14008679号