git 回滚操作 自己写了代码想要回滚,之前自己的方法太耽误时间了,同事教了一个方法可以快速回滚 第一部分:回滚:点击history-->Version Control-->log 同时选中两个版本--> 2、然后回滚; 第二部分提交区 git 有四个区域,1、编辑区,2、暂存区 3、待提交区 4、 ...
分类:
其他好文 时间:
2021-06-02 11:02:07
阅读次数:
0
photoshop javascript window 的一个例子 参考连接:Photoshop scripts · GitHub // Open Recent Files - Adobe Photoshop Script // Description: displays a Recent File ...
分类:
编程语言 时间:
2021-05-25 18:18:28
阅读次数:
0
一、关于promise 1. 处理异步操作 2. 是一个构造函数,可实例化 3. 支持链式调用,解决回调地狱问题 二、 promise初使用 const p = new Promise((resolve,reject) => { setTimeout(()=>{ let n = rand(1,100 ...
分类:
其他好文 时间:
2021-05-24 15:29:20
阅读次数:
0
let list = [] let arr = {'a':'1','b':'2','c':'3','d':'4'} for(var key in arr){ console.log("key:"+key+",value:"+arr[key]) list.push({ 'key':key, 'valu ...
分类:
Web程序 时间:
2021-05-24 14:32:47
阅读次数:
0
多文件合并下载 依赖于 https://github.com/feross/multistream const streams = []; for (const file of files) { streams.push(fs.createReadStream(file)); } this.ctx. ...
分类:
Web程序 时间:
2021-05-24 14:10:30
阅读次数:
0
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:
其他好文 时间:
2021-05-24 13:43:08
阅读次数:
0
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:
其他好文 时间:
2021-05-24 13:17:52
阅读次数:
0
一、将本地文件修改后push到远程分支有时会出现 devlops|MERGING 1 2 3 4 5 6 7 8 9 10 11 12 13 git add . git commit -m "feat:优惠券功能" git pull ........... (devlops|MEARGE) git ...
分类:
其他好文 时间:
2021-05-24 11:59:51
阅读次数:
0
先看效果实现 需求分析 这个是使用 PopupRoute这个路由类进行实现 大概原理就是利用PopupRpute这个类进行改造,然后自定义一个页面,页面内镶嵌一个动画类,用来实现缩放动画 大概分为三部分,PopupRoute改造,弹出页面设置,动画类设置。 为什么选择PopupRoute? 可以镶嵌 ...
分类:
微信 时间:
2021-05-24 11:00:55
阅读次数:
0
实现退出功能 一、退出功能实现原理 基于token的方式实现退出比较简单,只需要销毁本地的token即可。这样后续的请求就不会携带token,必须重新登录一个新的token之后才可以访问页面。 二、实现如下 // 清空token window.sessionStorage.clear() // 跳转 ...
分类:
其他好文 时间:
2021-05-24 10:29:22
阅读次数:
0