https://github.com/youngjuning/wxbase64
:building_construction:在小程序中使用 js-base64 库
https://github.com/youngjuning/wxbase64
base64 miniapp weixin wexin wxapp
Last synced: about 1 month ago
JSON representation
:building_construction:在小程序中使用 js-base64 库
- Host: GitHub
- URL: https://github.com/youngjuning/wxbase64
- Owner: youngjuning
- License: mit
- Created: 2018-04-29T03:32:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T03:33:09.000Z (about 7 years ago)
- Last Synced: 2025-04-06T21:27:15.576Z (about 2 months ago)
- Topics: base64, miniapp, weixin, wexin, wxapp
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 21
- Watchers: 2
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wxBase64
## 引入
### node.js
```js
let Base64 = require('js-base64').Base64
```### es6+
```js
import {Base64} from '/utils/base64.min.js'
```## 使用
```js
Base64.encode('youngjuning'); // eW91bmdqdW5pbmc=
Base64.encode('杨俊宁'); // 5p2o5L+K5a6B
Base64.encodeURI('杨俊宁'); // 5bCP6aO85by-Base64.decode('eW91bmdqdW5pbmc='); // youngjuning
Base64.decode('5p2o5L+K5a6B'); // 杨俊宁
// note .decodeURI() is unnecessary since it accepts both flavors
Base64.decode('5bCP6aO85by-'); // 杨俊宁
```## 感谢
感谢 dankogai [](https://github.com/dankogai) 开发了 js-base64 [](https://github.com/dankogai/js-base64)