<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[CongPong的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/CongPong</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; CongPong]]></copyright><item><title><![CDATA[Websocket “未完成操作“与真机报错 问题]]></title><link>https://blog.csdn.net/CongPong/article/details/134601381</link><guid>https://blog.csdn.net/CongPong/article/details/134601381</guid><author>CongPong</author><pubDate>Fri, 24 Nov 2023 16:40:45 +0800</pubDate><description><![CDATA[关于弱小又无助的小前端开发工程师的经历分享：在用uniapp开发微信小程序的过程中，需要使用websocket进行数据的传输，在开发过程中没有任何的问题，但是进入生产环境时，真的是三路十八弯，让小前端尝遍了微信小程序和社会满满的恶意。对于没有小程序开发经验的后端人员来说，到是很离谱的一件事，而当前端人员、产品也不知道这件事时，是非常痛苦的。希望你们的情况不一样。。。。]]></description><category></category></item><item><title><![CDATA[HashMap 哈希表初解]]></title><link>https://blog.csdn.net/CongPong/article/details/133938906</link><guid>https://blog.csdn.net/CongPong/article/details/133938906</guid><author>CongPong</author><pubDate>Fri, 20 Oct 2023 09:12:55 +0800</pubDate><description><![CDATA[也叫散列表，是一种非常重要的数据结构（数组+链表+红黑树），它将键映射到值，是一种快速查询数据的方法，应用场景及其丰富，许多缓存技术（比如memcached）的核心其实就是在内存中维护一张大的哈希表。]]></description><category></category></item><item><title><![CDATA[JavaScrip 案例三 --元素是否在可视化区域]]></title><link>https://blog.csdn.net/CongPong/article/details/126645992</link><guid>https://blog.csdn.net/CongPong/article/details/126645992</guid><author>CongPong</author><pubDate>Thu, 01 Sep 2022 16:33:32 +0800</pubDate><description><![CDATA[用途，

实现方式，

创建观察者，

传入被观察者，
应用场景，]]></description><category></category></item><item><title><![CDATA[JavaScript 案例二 --typeof 与 instanceof]]></title><link>https://blog.csdn.net/CongPong/article/details/126644868</link><guid>https://blog.csdn.net/CongPong/article/details/126644868</guid><author>CongPong</author><pubDate>Thu, 01 Sep 2022 16:03:03 +0800</pubDate><description><![CDATA[typeof,
特例,
instanceof,
实现原理,
区别,
需要通用检测数据类型,
案例,]]></description><category></category></item><item><title><![CDATA[JavaScript 案例一 --bind，call，apply]]></title><link>https://blog.csdn.net/CongPong/article/details/126644342</link><guid>https://blog.csdn.net/CongPong/article/details/126644342</guid><author>CongPong</author><pubDate>Thu, 01 Sep 2022 15:41:23 +0800</pubDate><description><![CDATA[bind，call，apply 三者的作用,
区别,
apply,
call,
bind,
实现,]]></description><category></category></item><item><title><![CDATA[JavaScript --this]]></title><link>https://blog.csdn.net/CongPong/article/details/126627309</link><guid>https://blog.csdn.net/CongPong/article/details/126627309</guid><author>CongPong</author><pubDate>Wed, 31 Aug 2022 17:09:19 +0800</pubDate><description><![CDATA[this 定义,
this 绑定规则,
默认绑定,
隐式绑定,
new绑定,
显示绑定,
箭头函数,
优先级,]]></description><category></category></item><item><title><![CDATA[HTTP 常见的状态码]]></title><link>https://blog.csdn.net/CongPong/article/details/126626069</link><guid>https://blog.csdn.net/CongPong/article/details/126626069</guid><author>CongPong</author><pubDate>Wed, 31 Aug 2022 16:25:27 +0800</pubDate><description><![CDATA[什么是状态码?
分类
第一位数字决定了不同的响应状态
1 表示消息
2 表示成功
3 表示重定向
4 表示请求错误
5 表示服务器错误
使用场景]]></description><category></category></item><item><title><![CDATA[Vue 跨域问题]]></title><link>https://blog.csdn.net/CongPong/article/details/126465690</link><guid>https://blog.csdn.net/CongPong/article/details/126465690</guid><author>CongPong</author><pubDate>Mon, 22 Aug 2022 15:16:49 +0800</pubDate><description><![CDATA[vue跨域问题
JSONP
CORS
Proxy（代理）]]></description><category></category></item><item><title><![CDATA[Vue 权限管理]]></title><link>https://blog.csdn.net/CongPong/article/details/126463628</link><guid>https://blog.csdn.net/CongPong/article/details/126463628</guid><author>CongPong</author><pubDate>Mon, 22 Aug 2022 13:04:54 +0800</pubDate><description><![CDATA[接口权限
按钮权限
菜单权限
路由权限]]></description><category></category></item><item><title><![CDATA[前端 面试 CSS]]></title><link>https://blog.csdn.net/CongPong/article/details/126447713</link><guid>https://blog.csdn.net/CongPong/article/details/126447713</guid><author>CongPong</author><pubDate>Sun, 21 Aug 2022 17:53:05 +0800</pubDate><description><![CDATA[盒子模型
选择器
类型 与 优先级
伪元素和伪类的区别和作用
无继承性的属性与右继承性的属性
CSS3 新增属性
单位 em/px/rem/vh/vw
响应式设计
媒体查询的理解
BFC
Css性能优化
回流与重绘
减少回流重绘
display的属性及其作用
display 的 block、inline、]]></description><category></category></item><item><title><![CDATA[前端 面试 HTML]]></title><link>https://blog.csdn.net/CongPong/article/details/126436653</link><guid>https://blog.csdn.net/CongPong/article/details/126436653</guid><author>CongPong</author><pubDate>Sat, 20 Aug 2022 11:32:16 +0800</pubDate><description><![CDATA[前端 面试题  --HTML]]></description><category></category></item><item><title><![CDATA[ES6 Set 与 Map 数据结构详解]]></title><link>https://blog.csdn.net/CongPong/article/details/126399395</link><guid>https://blog.csdn.net/CongPong/article/details/126399395</guid><author>CongPong</author><pubDate>Thu, 18 Aug 2022 10:15:31 +0800</pubDate><description><![CDATA[Set是一种叫做集合的数据结构
Map是一种叫做字典的数据结构
WeakSet和WekMap
WeakSet
WeakMap
共同点
不同点]]></description><category></category></item><item><title><![CDATA[ES6 函数]]></title><link>https://blog.csdn.net/CongPong/article/details/126398695</link><guid>https://blog.csdn.net/CongPong/article/details/126398695</guid><author>CongPong</author><pubDate>Thu, 18 Aug 2022 09:35:18 +0800</pubDate><description><![CDATA[参数
属性
length属性
name属性
作用域
严格模式
箭头函数
使用“箭头”（=>）定义函数
如果箭头函数不需要参数或需要多个参数，就使用一个圆括号代表参数部分
如果箭头函数的代码块部分多于一条语句，就要使用大括号将它们括起来，并且使用return语句返回
如果返回对象，需要加括号将对象包裹
注意点：...]]></description><category></category></item><item><title><![CDATA[ES6 对象]]></title><link>https://blog.csdn.net/CongPong/article/details/126396040</link><guid>https://blog.csdn.net/CongPong/article/details/126396040</guid><author>CongPong</author><pubDate>Wed, 17 Aug 2022 23:21:09 +0800</pubDate><description><![CDATA[属性的简写（简洁表达式）
属性名表达式
super关键字
拓展运算符的应用
属性的遍历
对象新增的方法
Object.is()
Object.assign()
Object.getOwnPropertyDescriptors()
Object.setPrototypeOf()，Object.getPrototypeOf()
Object.keys()，Object.values()，Object.entries()
Object.fromEntries()...]]></description><category></category></item><item><title><![CDATA[ES6 新增数组方法]]></title><link>https://blog.csdn.net/CongPong/article/details/126387186</link><guid>https://blog.csdn.net/CongPong/article/details/126387186</guid><author>CongPong</author><pubDate>Wed, 17 Aug 2022 22:42:20 +0800</pubDate><description><![CDATA[扩展运算符
构造函数新增的方法
Array.from()
Array.of()
实例对象新增方法
copyWithin()
find()，findIndex()
fill()
entries()，keys()，values()
includes()
flat()，flatMap()
数组的空位
排序稳定性]]></description><category></category></item><item><title><![CDATA[var、let、const 使用]]></title><link>https://blog.csdn.net/CongPong/article/details/126384063</link><guid>https://blog.csdn.net/CongPong/article/details/126384063</guid><author>CongPong</author><pubDate>Wed, 17 Aug 2022 14:31:41 +0800</pubDate><description><![CDATA[let，var，const]]></description><category></category></item><item><title><![CDATA[JavaScript 最全思维导图]]></title><link>https://blog.csdn.net/CongPong/article/details/126291838</link><guid>https://blog.csdn.net/CongPong/article/details/126291838</guid><author>CongPong</author><pubDate>Thu, 11 Aug 2022 19:59:47 +0800</pubDate><description><![CDATA[思维导图，数据类型，数组常用方法，字符串常用方法，类型转换，函数，事件模型，事件代理，事件循环，执行上下文和执行栈，原型与原型链，作用域链，this，继承，正则与web攻击，== 与 ===，typeof 与 instanceof，new 操作符，ajax 原理,bind、call、apply，数字精度丢失，大文件上传如何做点续传,上拉加载，下拉刷新，单点登录,内存泄露，本地存储，递归尾递归.........]]></description><category></category></item><item><title><![CDATA[Android Handle机制]]></title><link>https://blog.csdn.net/CongPong/article/details/126151955</link><guid>https://blog.csdn.net/CongPong/article/details/126151955</guid><author>CongPong</author><pubDate>Thu, 04 Aug 2022 06:46:34 +0800</pubDate><description><![CDATA[handle 的机制，内存泄露原因以及最佳解决方案，能在主线程直接使用 Handler，而不需要创建 Looper，主线程的 Looper 不允许退出 ，Handler 里藏着的 Callback ，创建 Message 实例，子线程里弹 Toast，主线程的死循环一直运行是不是特别消耗CPU资源，handler postDelay这个延迟是怎么实现...]]></description><category></category></item><item><title><![CDATA[Android Activity 启动模式]]></title><link>https://blog.csdn.net/CongPong/article/details/126151787</link><guid>https://blog.csdn.net/CongPong/article/details/126151787</guid><author>CongPong</author><pubDate>Thu, 04 Aug 2022 01:55:42 +0800</pubDate><description><![CDATA[Android Activity 四种启动模式]]></description><category></category></item><item><title><![CDATA[设计模式 MVC MVP MVVM 和 实践]]></title><link>https://blog.csdn.net/CongPong/article/details/126151543</link><guid>https://blog.csdn.net/CongPong/article/details/126151543</guid><author>CongPong</author><pubDate>Thu, 04 Aug 2022 00:59:34 +0800</pubDate><description><![CDATA[MVC MVP MVVM 的使用和选择]]></description><category></category></item></channel></rss>