摘要:
通过工具(hexo-deployer-git)自动部署博客到github时遇到 fatal: unable to access 'https://github.com/xkfx/xkfx.github.io/': Unknown SSL protocol error in connection to 阅读全文
摘要:
输入: Random testing is not only a useful testing technique in itself, but also plays a core role in many other testing methods. Hence, any significant 阅读全文
摘要:
准备工作 cnpm install hexo-cli -g 初始化博客源文件 hexo init blog(这个blog可以替换成你喜欢的名字) cd blog npm install 调试博客 hexo server 这样就可以在http://localhost:4000/访问你的博客 将博客部署 阅读全文
摘要:
问题: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.remote: Please see https://github.b 阅读全文
摘要:
饮水思源:https://www.bilibili.com/video/BV1wy4y1D7JT?p=12 一句话:状态驱动页面,状态改变,页面改变。 简单组件 被传入的数据可在组件中通过 this.props 在 render() 访问。 <script type="text/babel"> le 阅读全文
摘要:
饮水思源:https://www.bilibili.com/video/BV1wy4y1D7JT?p=9 函数式组件 函数名首字母必须大写 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Add React in One M 阅读全文
摘要:
饮水思源:https://www.bilibili.com/video/BV1wy4y1D7JT?p=5 jsx语法规则 1.定义虚拟DOM时,不要写引号。2.标签中混入JS表达式时要用{}。3.样式的类名指定不要用class,要用className.4.内联样式,要用sty1e={{key:val 阅读全文
摘要:
代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Add React in One Minute</title> </head> <body> <div id="test"></div> <!-- 加载 React 阅读全文
摘要:
饮水思源:尚硅谷2021版React技术全家桶全套完整版 官网上找到一段入门代码修改了一下。 创建一个新的HTML页面,在Body的末尾添加上: <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin 阅读全文