Skip to content

Commit

Permalink
fix: broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
kuizuo committed Jan 14, 2024
1 parent 530ae4a commit 3a25a62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blog/develop/浅谈HTTP.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Accept-Language: zh-CN,zh;q=0.9

在这里我看到了原文的信息,这是通过 Jquery 通过 id 获取元素的值,也就是这里的手机号和密码,在这里还都是原文,点到下一个函数则变成了密文,那么肯定是上一个函数做了手脚。

认真观察,N 这个是我们的密码,但对 N 进行了一个操作也就是 `a.hex_md5(N)`,没错,这就是 md5 加密。有关加密的可以看看我写过的 [浅谈加密算法](./docs/brief-talk-encryption-algorithm)
认真观察,N 这个是我们的密码,但对 N 进行了一个操作也就是 `a.hex_md5(N)`,没错,这就是 md5 加密。有关加密的可以看看我写过的 [浅谈加密算法](/docs/brief-talk-encryption-algorithm)

那么通过加密工具将 md5 加密是否能得到我们要的加密结果,如下

Expand Down
10 changes: 8 additions & 2 deletions docs/skill/web/vue/Vue响应式数据之Array.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ ADD [ 0 ]

## Proxy

但在 Vue3 也可以使用 Proxy 来监听(代理)数据,先引用监听[Object 中的最终代码](/docs/vue-reactive-data-object/#最终代码),对其稍加修改一下,看看效果
但在 Vue3 也可以使用 Proxy 来监听(代理)数据,先引用监听[Object 中的最终代码](/docs/vue-reactive-data-object#最终代码),对其稍加修改一下,看看效果

```javascript
function log(type, index, val) {
Expand All @@ -132,7 +132,13 @@ function reactive(target) {
set(target, key, newVal, receiver) {
const oldVal = target[key]

const type = Array.isArray(target) ? (Number(key) < target.length ? 'SET' : 'ADD') : Object.prototype.hasOwnProperty.call(target, key) ? 'SET' : 'ADD'
const type = Array.isArray(target)
? Number(key) < target.length
? 'SET'
: 'ADD'
: Object.prototype.hasOwnProperty.call(target, key)
? 'SET'
: 'ADD'

const res = Reflect.set(target, key, newVal, receiver)

Expand Down

1 comment on commit 3a25a62

@vercel
Copy link

@vercel vercel bot commented on 3a25a62 Jan 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

blog-git-main-kuizuo1.vercel.app
blog-kuizuo1.vercel.app
blog-kuizuo.vercel.app
kuizuo.cn

Please sign in to comment.