问题
前端精髓
公众号【前端精髓】
展开
-
怎么判断是不是new创建的
function Vue (options) { if (!(this instanceof Vue)) { console.warn('Vue is a constructor and should be called with the `new` keyword') } // this._init(options)}在读vue源码的时候我发现一行代码,还挺有意思的,那就是条件语句中 this instanceof Vue 代码,其实这个代码就是判断该函数只能通过new来调用。原创 2022-03-27 10:30:31 · 5868 阅读 · 0 评论 -
win按键失灵问题
我刚刚也是出现了同样的问题,解答给同样用阿米洛键盘的朋友,阿米洛键盘win按键失灵问题。其实是自己不小心把win键给锁定了。 这个功能其实是对于玩游戏的时候不用受到干扰。锁定的方法 :fn + 左win 。解锁的方法: fn + 右win。...原创 2022-03-25 10:37:58 · 10452 阅读 · 2 评论 -
解决iOS 上拉边界下拉出现白色空白
表现手指按住屏幕下拉,屏幕顶部会多出一块白色区域。手指按住屏幕上拉,底部多出一块白色区域。产生原因在 iOS 中,手指按住屏幕上下拖动,会触发 touchmove 事件。这个事件触发的对象是整个 webview 容器,容器自然会被拖动,剩下的部分会成空白。解决方案监听事件禁止滑动由此我们找到解决方案,通过监听 touchmove,让需要滑动的地方滑动,不需要滑动的地方禁止滑动。值...原创 2020-03-09 10:38:34 · 14936 阅读 · 5 评论 -
执行create-react-app报错A template was not provided
在执行 npx create-react-app my-app报错Installing packages. This might take a couple of minutes.Installing react, react-dom, and react-scripts........ nothing out of the ordinary here .....✨ Done in 2...原创 2019-12-14 20:30:56 · 4393 阅读 · 1 评论