浅谈redux1 Posted on 2020-06-08 Words count in article: 3.2k | Reading time ≈ 12 浅谈redux1学习自阮一峰的博客 阮一峰的技术博客1 阮一峰的技术博客2 阮一峰的技术博客3 和b站Mosh教程 Getting StartedWhat is ReduxRedu是JavaScript应用程序的状态管理库.我们可以在React,Angular,Vue甚至原生JS中都能用 为什么 ... Read more »
React框架在作业当中的应用 Posted on 2020-06-07 | In react Words count in article: 11.6k | Reading time ≈ 55 React框架在作业当中的应用本篇博客随时会引用这四篇博客中实现的功能与技术。 鉴于基础博客的篇幅都比较长,为了有良好的阅读体验,本文所有的链接点击即可跳转至相应章节。 react基础1组件与组合组件 react基础2分页排序搜索+路由 react基础3表单与后端 react基础4授权与部署 根目 ... Read more »
Nodejs基础4 Posted on 2020-06-07 | In node Words count in article: 882 | Reading time ≈ 4 Authentication and AuthorizationIntroductionCreating the User ModelRegistering UsersUsing LodashHashing PasswordsAuthenticating UsersTesting the Authe ... Read more »
Nodejs基础3 Posted on 2020-06-07 | In node Words count in article: 2.3k | Reading time ≈ 11 Mongo - Data ValidationValidation12345678const courseSchema = new mongoose.Schema({ name: String, author: String, tags: [ String ], date: Da ... Read more »
Nodejs基础2 Posted on 2020-06-07 | In node Words count in article: 4.7k | Reading time ≈ 22 Nodejs基础2Nodejs基础1 Nodejs基础2 Nodejs基础3 Nodejs基础4 Asynchronous JavaScriptSynchronous vs Asynchronous Code在现实中我们更多的是使用数据库而非数组。在我们讨论Node链接mongodb之前我们先要了 ... Read more »
Nodejs基础1 Posted on 2020-06-07 | In node Words count in article: 6k | Reading time ≈ 26 Nodejs基础1在 react基础2 react基础3表单与后端 react基础4授权与部署 这三篇博客中,我们讨论了vidly(一个电影展示项目)的客户端,但是我们在博客中仅仅调用了后端的api,对后端如何构建并没有提及。而Nodejs构造的后端是期末大作业中必不可少的一部分,所以这个系列让 ... Read more »
web期末大作业-主博客 Posted on 2020-06-07 Words count in article: 1.8k | Reading time ≈ 6 web期末大作业-主博客写在前面这次的期末大作业我选择第一个 我接触web开发仅仅只有短短半学期时间,能兼顾前后端并把原理说得很明白是很难做到的。作业实现的代码中也有相当一部分在学习相关知识之后还迷迷糊糊未曾深究。加上我的表达能力着实有限,实在无法简洁明了,简单扼要得把整个作业项 ... Read more »
react基础4授权与部署 Posted on 2020-06-05 | In react Words count in article: 4.6k | Reading time ≈ 19 react基础4授权与部署最终章。可能有番外吧。。但是也要在完成大作业之后了 前三章: react基础3表单与后端 react基础2排序分页与查询+路由 react基础组件+如何组合组件 Authentication and AuthorizationIntroductionRegistering ... Read more »
离散数学之关系2 Posted on 2020-06-05 Words count in article: 3.9k | Reading time ≈ 14 离散数学之关系2 Closures of Relations 闭包 设R是非空集合A上的关系,在关系R中,可能有或无性质P,如自反(r),对称(s),传递(t),若存在包含R,满足性质P的关系S,使得S是所有包含R,满足P的关系的子集,那么称S是R关于P的闭包(有时这样的闭包不存在) 所以我原来R可 ... Read more »
react基础3 Posted on 2020-06-04 | In react Words count in article: 10k | Reading time ≈ 45 react基础3:表单和后端前两篇回顾 react基础组件+如何组合组件 react基础2分页排序搜索+路由 下一篇 react基础4授权与部署 Forms 表单Introduction登陆表单 添加电影信息的表单 查询表单 Building a Bootstrap Form我们先把表单添 ... Read more »