06 2023 档案

摘要:uni.navigateTo 用于页面跳转 如: <navigator url="/pages/index/index" hover-class="navigator-hover"> <button type="default">跳转</button> </navigator> 但是跳转页面失败,没 阅读全文
posted @ 2023-06-19 15:14 慕尘 编辑
摘要:1.安装jsonwebtoken npm install jsonwebtoken 2.获取token,sign.js 先不加身份验证了,只是简单生成一个token const jwt = require('jsonwebtoken'); async function getToken(ctx) { 阅读全文
posted @ 2023-06-13 13:10 慕尘 编辑
摘要:Json web token (JWT) 用于跨域身份验证 安装 npm install jsonwebtoken 1.生成token const secret = 'ABCDEFG'; const token = jwt.sign({ data: 'XYZ', }, secret, { expir 阅读全文
posted @ 2023-06-13 10:51 慕尘 编辑
摘要:package.json是用来识别项目并且处理项目的依赖关系的 { "name": "名",//包名字 "version": "1.0.0", //版本 "description": "描述", "main": "index.js",//入口文件 "scripts": {//指定运行脚本命令的 np 阅读全文
posted @ 2023-06-08 15:19 慕尘 编辑