TEtryandtry
TEtryandtry
全部文章
分类
CSS(24)
git(5)
HTML(7)
javascript(14)
mongodb(1)
node(8)
REACT(2)
vscode(1)
VUE(23)
vue.js(3)
word(1)
前端面试(3)
小程序代码报错(1)
小程序配置项(1)
归档
标签
去牛客网
登录
/
注册
TE Try and try again
TE努力再努力
全部文章
(共93篇)
Unable to preventDefault inside passive event listener due to target being treated as passive
因为页面通过调用document addEventL istener来添加一个mousewheel事件的***handler ,并通过设置passive属性的值为true来声明***handler是被动监听mousewheel事件,即handler内部不会调用事件的preventDefault函数。...
2020-09-16
0
565
解决谷歌浏览器中touchstart不管用的方法
原因:https://zhuanlan.zhihu.com/p/24385322 解决方法: document.addEventListener('touchstart', function(event) { // 判断默认行为是否可以被禁用 if (event.canc...
2020-09-16
0
968
LF will be replaced by CRLF in ...
git add 提交报错LF will be replaced by CRLF in,但是其实这个无伤大雅,它是换行符的问题,LF是linux和Unix系统的换行符,CRLF是window 系统的换行符。因为git默认提供了换行符自动转换,以适应不同的系统,所以说这个管不管都行。 如果你想关了自动转...
2020-09-16
0
600
node中post请求使用req.body获取不到值怎么办
express框架默认是不能获取的,必须加上body-parser中间件
2020-09-16
0
789
解决后端post请求参数为空的问题
axios发送post请求时, Content-Type默认是application/json;charset=utf-8,当后端需要的形式为 application/x-www-form-urlencoded 或者multipart/form-data 时,值就为空。反过来也是如此。 常见的po...
2020-09-16
0
2917
word中怎么把脚注转换为尾注
第一步:视图>草稿视图 第二部:引用>显示备注 第三步:选择弹窗框的脚注字样旁边的下拉列表,选择所有脚注 第四步:全选所有脚注,鼠标右键,改为尾注 第六步,关闭弹出窗,然后点击视图>页面视图,就好了。
2020-09-16
0
768
解决空隙问题(记录)
html中默认标签之间的空格是占位置的,解决方法font-size
2020-09-16
0
372
Error: tunneling socket could not be established, cause=connect ECONNREFUSED 127 .0.0.1:7890
微信小程序报错:Error: tunneling socket could not be established, cause=connect,ECONNREFUSED 127 .0.0.1:7890 解决方法:设置>代理>不使用任何代理,直接勾选网络
2020-09-16
0
758
wx:key={{ index }}does not look like a valid key name (did you mean wx:key=index?)
先上源代码 <view class="item{ { item.completed ? ' completed' : '' }}" wx:for="{ {todos}}" catchtap="switchStateHandle&q...
2020-09-16
0
663
暴漏React配置时报错Remove untracked files, stash or commit any changes, and try again.
暴漏React配置时报错"Remove untracked files, stash or commit any changes, and try again." 原因是react在创建项目时会自动创建git仓库,我删除了文件却没有做提交保存到仓库中。 解决方法 git add...
2020-09-16
0
547
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页