摘要: SFC single-file components 单文件组件 SPA Single-Page Application 单页应用程序 SSR server side render 服务器端渲染 HOC High Order Component 是 react 中对组件逻辑复用部分进行抽离的高级技术 阅读全文
posted @ 2021-06-10 14:01 new一个小洛 阅读(242) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="about"> <p :class="{classA:isTrue,classB:!isFalse}">classA -- classB</p> <h1 :class="hasChange">This is an about page</h1> //绑定 阅读全文
posted @ 2021-06-10 11:09 new一个小洛 阅读(253) 评论(0) 推荐(0) 编辑
摘要: window.onscroll = function() { //变量scrollTop是滚动条滚动时,距离顶部的距离 var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; //变量windowH 阅读全文
posted @ 2021-06-03 15:52 new一个小洛 阅读(216) 评论(0) 推荐(0) 编辑
摘要: <html> <head></head> <body> <ul id="ulList"></ul> <script> window.onload = function(){ var ul = document.getElementById("ulList"); for(let i = 0 ; i < 阅读全文
posted @ 2021-01-14 12:59 new一个小洛 阅读(140) 评论(0) 推荐(0) 编辑
摘要: function x(...list){ return list.reduce((sum,n)=>sum+n,0); } x(1,2,3); // 6 x(); // 0 阅读全文
posted @ 2020-11-30 01:04 new一个小洛 阅读(62) 评论(0) 推荐(0) 编辑
摘要: function a(){ console.log("+-+"); } function b(){ j = setInterval(a, 1000); //按照教程在这里写了个 var j = setInterval(a, 1000); //于是,就出现一个问题,清除定时器 的 function c 阅读全文
posted @ 2020-09-19 00:08 new一个小洛 阅读(1884) 评论(0) 推荐(0) 编辑
摘要: <style> p{width:200px;line-height:50px;margin:20px;cursor:pointer;background:#000;color:#fff;text-align:center;} </style> <p data="a1">1111 onclick</p 阅读全文
posted @ 2020-07-27 10:32 new一个小洛 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 在新版中 部分设置已经以 注释的形式 内置于总的 setting 文件中。 相关设置如果需要重新定义,需要复制 选择器 和 注释中的属性值 到 user setting中。 Example: // SublimeLinter Settings - User{ "highlights.time_to_ 阅读全文
posted @ 2018-09-07 00:45 new一个小洛 阅读(835) 评论(0) 推荐(0) 编辑
摘要: 亲测有效的是这个:web.ctx.env.get('HTTP_X_REAL_IP') 官方文档里提到的 web.ctx.ip 不知道是不是自己没用明白,获取的并不是访客IP。 代码如下: class huoqu: def GET(self): getRealIP = web.ctx.env.get( 阅读全文
posted @ 2018-03-21 16:54 new一个小洛 阅读(623) 评论(0) 推荐(1) 编辑