zoukankan      html  css  js  c++  java
  • vue 集成html5 plus

    首先要安装一个包 vue-html5plus 

      npm i vue-html5plus -S

    然后配置这个文件

    在main.js添加一串代码

      var onPlusReady = function (callback, context = this) {

        if (window.plus) {

          callback.call(context)

         } else {

          document.addEventListener('plusready', callback.bind(context))

         }

      }

      Vue.mixin({

         beforeCreate () {

          onPlusReady(() => { this.plusReady = true }, this)

         },

        methods: {

          onPlusReady: onPlusReady

        }

      })

    这样就可以集成html5 plus了

    使用方法示例:(获取地理位置)

      mounted () {

        this.onPlusReady(function () {

          plus.geolocation.getCurrentPosition( 

             this.geoInf, function (e) {

              alert('获取位置信息失败:' + e.message)

            },

             {

               geocode: false

            } )

         })

       },

  • 相关阅读:
    div常用设置
    Chrome-Charset——Chrome最新版右键工具中的编码修改功能没有了的解决工具
    PHP数据访问(面向对象方式:mysqli类)
    JSON
    jQuery
    jQuery事件
    会话保持
    查询的例子,房屋租赁
    PHP CRUD
    批量删除
  • 原文地址:https://www.cnblogs.com/luobiao/p/10552030.html
Copyright © 2011-2022 走看看