美文网首页
js给app传参

js给app传参

作者: 残_忆 | 来源:发表于2021-08-30 09:31 被阅读0次
    getPhoto(){
          let data = {
            card: this.card,
          }
          icbcPhoto(data).then(res => {
            //提前获取到图片url
            this.cardImagePath = res.data
          })
        },
        download(){//点击下载图片
          if(window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.openCard){
            //ios的标识(window.webkit && window.webkit.messageHandlers 防止报错),IOS方法提供的方法openCard
            //postMessage和ios的固定写法,参数和正常js传参一样
            window.webkit.messageHandlers.openCard.postMessage({cardImagePath: this.cardImagePath})
          }else if(window.JxbApp){
            //window.JxbApp,安卓标识,savePic安卓方法,传参:this.cardImagePath
            window.JxbApp.savePic(this.cardImagePath)
          }else{
            //封装的浏览器下载图片方法
            downloadImage(this.cardImagePath,'img')
          }
        },
    

    相关文章

      网友评论

          本文标题:js给app传参

          本文链接:https://www.haomeiwen.com/subject/xcaailtx.html