npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

weapp-authorize

v1.0.6

Published

🌞 微信小程序“授权”封装

Downloads

20

Readme

Weapp Authorize

🌞 微信小程序“授权”封装

在微信小程序中使用地理位置、相册、摄像头等十多种API前,需要用户选择对 scope 来进行授权,当授权给一个 scope 之后,其对应的所有接口都可以直接使用,而在用户拒绝授权的情况下还需进行二次授权的处理;在开发时对这些授权的处理以及兼容无疑是非常麻烦的;

weapp-authorize 对这些接口进行了封装,仅需调用 check auth 两个函数即可实现所有授权接口的逻辑

代码片段

更多微信小程序开发工具,查看 微信小程序开发全家桶

安装

npm i weapp-authorize

使用

使用前需要先了解微信小程序 授权 机制

视图层

<!-- index.wxml -->

<!-- 以位置授权为例
放置两个按钮处理 “已授权” 以及 “拒绝授权” 两种情况;
你可以通过 `userLocationAuth` 来判断是否获得了用户的授权,该变量由 weapp-authorize 自动生成并管理 -->
<button wx:if="{{ userLocationAuth }}" bindtap="getLocation">获取地理位置</button>
<!-- 当用户 “拒绝授权” 后,想要再次弹出授权框,button按钮必须加上 `openType="openSetting"` 属性 -->
<button wx:else openType="openSetting" bindopensetting="getLocation">获取地理位置</button>

逻辑层

// index.js
import authorize from 'weapp-authorize'
// const authorize = require('../path/to/weapp-authorize')

Page({
  onLoad() {
    // 在页面加载阶段,可以调用 check 函数提前向用户发起授权请求;
    // 该 scope 用于检查是否已授权【地理位置】权限
    authorize.check('userLocation', () => {
      // 如果用户未接受或拒绝过此权限,会弹窗询问用户,用户点击同意后方可调用接口;
      // 如果用户已授权,可以直接调用接口
      wx.getLocation({
        type: 'wgs84',
        success: res => {
          // ...
        },
      })
    }, () => {
      // 如果用户已拒绝授权,则不会出现弹窗,而是直接进入接口 fail 回调
    })

    // 也可以继续检查其他 scope 的授权状态
    authorize.check('writePhotosAlbum')
  },

  // 在发生用户点击交互时,需调用 auth 函数
  getLocation(e: any) {
    // auth 函数需接收点击按钮的 event 参数;
    // auth 函数兼容了用户拒绝授权的场景
    authorize.auth(e, 'userLocation', () => {
      wx.getLocation({
        type: 'wgs84',
        success: res => {
          const { latitude, longitude } = res
          wx.chooseLocation({
            latitude: latitude,
            longitude: longitude,
            success: r => {
              console.log(r)
            }
          })
        },
      })
    }, () => {
      // 授权失败的回调函数
      console.log('userLocation authorize failed')
    })
  },
})

注意事项

调用 check 与 auth 函数都需要传入 scope 参数,传入的 scope 需和官方文档的保持一致:scope 列表

根据传入函数的 scope 参数,weapp-authorize 会生成对应的data值提供给开发者,以此来判断用户对该 scope 的授权状态:

  • userLocationAuth
  • userLocationBackgroundAuth
  • recordAuth
  • cameraAuth
  • ...

使用定位等接口时,需要在 app.json 中配置 permission requiredPrivateInfos 等字段