登录 注册
当前位置:主页 > 资源下载 > 32 > 通用编码器解码器用于解码从Shopify店面GraphQL API获取的ID值,即shopify-gid

通用编码器解码器用于解码从Shopify店面GraphQL API获取的ID值,即shopify-gid

  • 更新:2024-05-30 18:51:26
  • 大小:21KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

shopify-gid 从Shopify店面GraphQL API返回的ID值的通用编码器/解码器。 压缩了400个字节。 安装 npm i shopify-gid --save 用法 import { encode , decode } from 'shopify-gid' 解码(base64hash) decode ( 'Z2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzEyMzQ1...' ) // => { type: 'Product', id: '12345', params: { accessToken: 'abcde123' }, raw: 'Z2lkOi8...' } 编码(类型,id [,参数]) encode ( 'Product' , 12345 , { accessToken : 'abcde123' } ) // => Z2lkOi8vc