会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
yyzyyx
博客园
首页
新随笔
联系
订阅
管理
[置顶]
html方法简单记录
摘要: html方法应该是对内容具有自动转义功能的。 即: $("p").html("abc123-_!@#$%^&*()_+{}<>国機ReÇÉ"); p标签这里显示的内容: abc123-_!@#$%^&*()_+{}<>国機ReÇé //html方法会自动进行转
阅读全文
posted @ 2017-10-26 19:09 yyzyyx
阅读(152)
评论(0)
推荐(0)
编辑
2024年1月2日
微服务是什么?
摘要: 刚开始学习微服务,java,找到了阮老师的一篇博客,虽然不一定对,但我认为对初学者来讲,可以更方便理解。因为记录如下: 微服务是什么? - 阮一峰的网络日志 (ruanyifeng.com) 我的总结: 微服务利用docker技术,可以将一个个应用放在容器中。而一个服务器可以部署多个容器,这样就节省
阅读全文
posted @ 2024-01-02 17:26 yyzyyx
阅读(11)
评论(0)
推荐(0)
编辑
2020年4月12日
c++中,map的使用
摘要: https://blog.csdn.net/BillCYJ/article/details/78985895 1. map是不允许重复键值的,而 multimap是允许重复的。 set也是这样 unordered_map是用哈希函数组织的map,是无序集合,而map是按关键字有序保存元素。 2. m
阅读全文
posted @ 2020-04-12 22:59 yyzyyx
阅读(420)
评论(0)
推荐(0)
编辑
2020年4月4日
关于C++中vector<vector<int> >的使用
摘要: 原文: https://www.cnblogs.com/tyty-Somnuspoppy/p/9361821.html 1. 纠正原文中的一个错误: vector<vector<int>> A;//错误的定义方式 //c++11标准中,已不再错误,而是作为标准退行。 vector<vector<in
阅读全文
posted @ 2020-04-04 14:29 yyzyyx
阅读(4275)
评论(0)
推荐(0)
编辑
2019年5月30日
python中如何向shell脚本传递带空格的参数
摘要: 假设 python 中向 shell传递参数 1. testArguments = "heihei" os.system('./test.sh {}'.format(testArguments)); 无问题 2. testArguments = "hei hei" os.system('./test
阅读全文
posted @ 2019-05-30 10:22 yyzyyx
阅读(741)
评论(0)
推荐(0)
编辑
2019年1月30日
数组初始化及赋值的方法,memset的使用
摘要: C++
阅读全文
posted @ 2019-01-30 00:20 yyzyyx
阅读(9308)
评论(0)
推荐(2)
编辑
2019年1月16日
leetcode:首个缺少的最小正整数(js实现。)
摘要: 题目描述: // 给定一个未排序的整数数组,找出其中没有出现的最小的正整数。//// 示例 1://// 输入: [1,2,0]// 输出: 3// 示例 2://// 输入: [3,4,-1,1]// 输出: 2// 示例 3://// 输入: [7,8,9,11,12]// 输出: 1 //下方
阅读全文
posted @ 2019-01-16 22:46 yyzyyx
阅读(592)
评论(0)
推荐(0)
编辑
2019年1月3日
安装cmake过程出错:Error when bootstrapping CMake: Cannot find a C++ compiler that supports both C++11 and the specified C++ flags.
摘要: Error when bootstrapping CMake:Cannot find a C++ compiler that supports both C++11 and the specified C++ flags. 1.没有装gcc 和 g++ 2. gcc 或者 g++ 版本过低,需要安装
阅读全文
posted @ 2019-01-03 09:12 yyzyyx
阅读(10952)
评论(0)
推荐(0)
编辑
2018年11月21日
React系列--三大属性 props refs state
摘要: https://blog.csdn.net/ImagineCode/article/details/82429819 props:组件外部向组件内部传值用,标签属性都挂载在 props上, <AddTodo add={this.add} length={todos.length}/> AddTodo
阅读全文
posted @ 2018-11-21 00:20 yyzyyx
阅读(165)
评论(0)
推荐(0)
编辑
2018年11月16日
React系列--组件Component
摘要: 1. 组件其实可以理解为 虚拟 dom对象的集合。也是一个虚拟dom。 1.1组件定义有两种方式 // 1) 工厂函数,无状态,(定义一些比较简洁的组件,推荐使用) function MyComponent1(){ return <h2>工厂函数</h2>; } // 2) ES6 class方式定
阅读全文
posted @ 2018-11-16 00:12 yyzyyx
阅读(199)
评论(0)
推荐(0)
编辑
2018年11月15日
React系列--jsx语法及虚拟dom,渲染
摘要: 1. 虚拟dom:其实感觉就跟dom是一样的,只不过是写在js的结构中,而不是写在html结构中。 此时需要babel去解析,遇到<认为是html,遇到{}认为是js变量。 <script type="text/babel"> //使用babel //创建虚拟DOM,有两种,一种不常用 let el
阅读全文
posted @ 2018-11-15 00:43 yyzyyx
阅读(176)
评论(0)
推荐(0)
编辑
下一页