上一页 1 2 3 4 5 6 7 8 ··· 20 下一页
摘要: /// <summary> /// 查询所有商品 /// </summary> /// <param name="pageNum">第几页</param> /// <param name="pageSize">每页多少条数据</param> /// <returns></returns> // GE 阅读全文
posted @ 2021-01-06 14:32 liessay 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 索引的分类: 索引就类似于中文字典前面的目录,按照拼音或部首都可以很快的定位到所要查找的字。 唯一索引(UNIQUE):每一行的索引值都是唯一的(创建了唯一约束,系统将自动创建唯一索引) 主键索引:当创建表时指定的主键列,会自动创建主键索引,并且拥有唯一的特性。 聚集索引(CLUSTERED):聚集 阅读全文
posted @ 2021-01-06 08:35 liessay 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 项目根目录下创建vue.config.js module.exports = { devServer: { proxy: { //配置跨域 '/api': { //这里是真实的后台接口 target: 'https://localhost:5001/', //允许跨域 changeOrigin: t 阅读全文
posted @ 2020-12-26 15:59 liessay 阅读(123) 评论(0) 推荐(0) 编辑
摘要: index.html <div class="nav"> <ul> <li> <a href="#">Java</a> <ul class="subnav"> <li><a href="#">Java入门</a></li> <li><a href="#">Java中级</a></li> <li><a 阅读全文
posted @ 2020-12-25 09:32 liessay 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: index.html <div class="nav"> <ul> <li><a href="#">Java</a></li> <li><a href="#">C#</a></li> <li><a href="#">Python</a></li> <li><a href="#">Go</a>&l 阅读全文
posted @ 2020-12-25 08:40 liessay 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 原因是开发时设置了不检查域名是否合法,去后台设置上就可以了 阅读全文
posted @ 2020-12-14 10:51 liessay 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 页面增加一个按钮 <button type="default" open-type="getUserInfo" @click="getUserInfo">UserInfo</button> 前端解密 安装 crypto-js npm install crypto-js 下载 WXBizDataCry 阅读全文
posted @ 2020-12-14 09:33 liessay 阅读(11305) 评论(0) 推荐(1) 编辑
摘要: 参考资料: 微信小程序官方文档 uniapp开发微信小程序获取用户手机号 页面增加一个按钮 <button open-type="getPhoneNumber" @getphonenumber="onGetPhoneNumber">唤起授权</button> 前端解密 安装 crypto-js np 阅读全文
posted @ 2020-12-14 09:14 liessay 阅读(12623) 评论(2) 推荐(1) 编辑
摘要: .net 默认新建Api项目不需要额外从Nuget添加Microsoft.AspNetCore.Authentication.JwtBearer appsettings.json { "Logging": { "LogLevel": { "Default": "Information", "Micr 阅读全文
posted @ 2020-12-07 15:32 liessay 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 1.临时使用 npm --registry https://registry.npm.taobao.org install 包名 2.永久设置为淘宝镜像 npm config set registry https://registry.npm.taobao.org 3.换回国外官方源 npm con 阅读全文
posted @ 2020-11-28 12:04 liessay 阅读(1431) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 20 下一页