上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: ### ```nginx``` - 概念: 一个高性能的[HTTP](https://link.zhihu.com/?target=https%3A//baike.baidu.com/item/HTTP)和[反向代理](https://link.zhihu.com/?target=https%3A/ 阅读全文
posted @ 2023-06-30 09:11 清安宁 阅读(29) 评论(0) 推荐(0)
摘要: ### 表单验证: ```vee-validate```插件 - 安装 ``` - npm i vee-validate@2 --save // 安装'2'版本的 ``` - 插件``` 模块化``` ``` ### plugins.validate.js import Vue from 'vue' 阅读全文
posted @ 2023-06-29 11:08 清安宁 阅读(55) 评论(0) 推荐(0)
摘要: - 参考网址 ``` - https://blog.csdn.net/weixin_45905671/article/details/115052054 ``` - 页面展示 ![](https://img2023.cnblogs.com/blog/2932705/202306/2932705-20 阅读全文
posted @ 2023-06-28 16:53 清安宁 阅读(122) 评论(0) 推荐(0)
摘要: ### ```Pycharm```**debug**调试 - 参考网址 ``` - https://zhuanlan.zhihu.com/p/62610785 ``` - 重点部分摘要如下 ``` step over(F8快捷键):在单步执行时,在函数内遇到子函数时不会进入子函数内单步执行,而是将子 阅读全文
posted @ 2023-06-28 13:40 清安宁 阅读(45) 评论(0) 推荐(0)
摘要: ### 个人中心```Center```组件 - 先搞定```静态组件``` ``` ### router.routes.js import Center from '@/pages/Center' export default [ { name:"center", path: "/center", 阅读全文
posted @ 2023-06-27 11:26 清安宁 阅读(122) 评论(0) 推荐(0)
摘要: ### 交易订单页面 - 先搞定```静态组件```,就三个动作 ``` - 复制粘贴'静态组件' - 路由注册一下 - 访问path测试 ``` ``` ### src.router.routers.js ...... import Trade from '@/pages/Trade' expor 阅读全文
posted @ 2023-06-16 08:43 清安宁 阅读(126) 评论(0) 推荐(0)
摘要: ### 先搞定```静态组件```,拷贝```Login```和```Register``` ### 注册模块 - 表单的验证最后再做 - 先完成发送```验证码```的逻辑 ``` ### Register.index.vue 手机号: 错误提示信息 验证码: --> 获取验证码 错误提示信息 . 阅读全文
posted @ 2023-06-08 09:43 清安宁 阅读(233) 评论(0) 推荐(0)
摘要: ### 易错点解析 - 遍历嵌套数据:外层套里层,外层的数据得先有,由于里层的数据依赖外层,才能继续渲染 ``` - 数据格式类似这样: [ { id:1 name:'xxx' categoryChild:[...] // 继续上面的套路,包裹一个个对象,里面再包裹[]... } {...} {.. 阅读全文
posted @ 2023-05-25 11:08 清安宁 阅读(17) 评论(0) 推荐(0)
摘要: ### ```排序```的操作 - 要求的数据格式 ``` - 数据格式说明 - '1'表示'综合排序' - '2'表示'价格排序' - 'asc'表示'升序' - 'desc'表示降序 - 项目的数据格式的样子 - 1:asc - 1:desc - 2:asc - 2:desc ``` ``` # 阅读全文
posted @ 2023-05-12 14:01 清安宁 阅读(95) 评论(0) 推荐(0)
摘要: ### 第一个爬虫程序,抓取网页源码并保存为```html文件``` ``` from urllib.request import urlopen url = 'http://www.baidu.com' res = urlopen(url) # print(res.read().decode('u 阅读全文
posted @ 2023-05-09 11:48 清安宁 阅读(87) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页