E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
lets
ES6中 Symbol
ES6之前已经学过6种数据类型,分别是:Object,Number,String,Boolean,Null,UndefinedES6中新增了一种新的原始数据类型:Symbol1.Symbol的基本用法
lets
zsl888822
·
2020-08-19 00:52
ES6
有关ES6中Symbol数据类型的理解
lets
1=Symbol('foo');
lets
2=Symbol('foo');s1===s2//falseSymbol类型可以有一个字符串参数,表示对Symbol实例的描述。
喜欢路飞的银桑
·
2020-08-19 00:49
JavaScript
原生JS实现单页面路由跳转
最近公司的一个小项目,需求只有几个页面;但是要做成单页面应用;用框架有点浪费资源,只能自己做一个简单的单页面功能;原生JS实现路由跳转functiongetEle(){
letS
=document.getElementById
風灬雲
·
2020-08-18 21:46
原生javascript
ubuntu下误删除/var/lib/dpkg解决办法
info,parts,triggers,updates}Recoversomebackups:sudocp/var/backups/dpkg.status.0/var/lib/dpkg/statusNow,
lets
武溪嵌人
·
2020-08-18 18:24
嵌入式
深入探究Swift枚举关联值的内存
enumSeason{caseSpring,Summer,Autumn,Winter}
lets
=Season.Spring这是枚举最基础的用法,但是在swift中,对枚举的功能进行了加强,也就是关联值。
·
2020-08-18 15:39
20 款前端开发文档和指南(1)
CSSVocabularyAgreatpoint-and-clicklittleapptogetyouuptospeedwithallthedifferentpartsofCSSsyntaxandwhatthepropernameforthemis.2.LiquidapsiveAverysimpleinformationallayoutthat,bymeansofaselectbox,
lets
ejinxian
·
2020-08-17 18:00
Web前端
leetcode题解-顺时针打印矩阵
判断圈数可以遍历的圈数是根据短边来判断的这里有三种情况圈数为偶数的情况圈数为奇数的情况且长>=宽圈数为奇数的情况且长=m){letq=Math.floor((m+1)/2)-1;
lets
=l-q*2;for
magic-zhu
·
2020-08-16 09:07
leetcode题解
从无到有的学习JavaScript——第四篇(函数)
补充知识:Symbols类型ES6提供了Symbol类型,内建原生类型//symbollets=Symbol()console.log(s)
lets
1=Symbol()console.log(s1)console.log
莫问收获,但问耕耘
·
2020-08-16 08:12
JavaScript
JS 计算几个月后的日期 与 两个日期相差几个月
***@description:获取n个月后的日期*@param{String}dtstr日期*@param{String}n几个月*@return:日期*/addmulMonth(dtstr,n){
lets
盘子呐
·
2020-08-16 00:17
js
es6(字符串的扩展)
是否包含字符串includes():返回布尔值,表示是否找到了参数字符串startsWith():返回布尔值,表示参数字符串是否在原字符串的头部endsWith():返回布尔值,表示参数字符串是否在原字符串的尾部
lets
可芭乐
·
2020-08-15 05:03
es6
Centos7 Nginx 使用 certbot 安装证书,并配置 OCSP 提高性能
官方安装教程:https://certbot.eff.org/
lets
-encrypt/centosrhel7-nginx之前一直使用军哥的Lnmp或者宝塔,所以配置https都有内置命令。
myarche
·
2020-08-14 23:26
linux
nginx
es6常用语法
//箭头函数letf=a=>a+1;//等价于varf=function(a){returna+1;}//模版字符串leta='react'
lets
=`hello${a}`;//helloreact//
keyuzhang
·
2020-08-14 17:18
Javascript
Rust学习(12):slice
slice获取值的使用权但是没有得到值得所有权fnmain(){
lets
=String::from("Helloworld");lethello=&s[0..5];//[start,end)letworld
Ocean&&Star
·
2020-08-12 16:11
#
rust
Rust 语言基础—引用与借用
Rust中的引用也是传参的形式,如下实例:fnmain(){
lets
1=String::from("hello");letlen=calculate_length(&s
御承扬
·
2020-08-12 15:06
Rust
语言学习
Rust
语言学习
ES6学习笔记(五)Set结构和Map结构
Set里面没有重复的值,可以用new运算符来构造一个Set,Set的构造函数可以传入一个参数,参数要是有iterable的结构,比如数组,arguments,字符串,元素集合,Set结构,Map结构等
lets
1
前端小黑
·
2020-08-12 14:14
ES6学习笔记
JavaScript
(精华)2020年7月3日 JavaScript高级篇 ES6(新增的实例方法)
新增的实例方法includes(),startsWith(),endsWith()//includes()返回布尔值startsWith()endsWith()
lets
='helloworld'console.log
愚公搬代码
·
2020-08-11 21:47
#
Javascript
高级篇
javascript
前端
碰撞检测之Ray-Cylinder检测
正交基和标准正交基首先来看定义
LetS
={v1,v2,...,vk}beasetofvectorsinRn,thenSiscalledanorthogonalifvi.vj=0forallinotequaltoj.AnorthogonalsetofvectorsiscalledorthonormalifallvectorsinSareunitvectors
拳四郎
·
2020-08-11 17:13
Physics&Math
带你了解虚拟 DOM(Virtual DOM)—— Snabbdom 的使用以及源码解析
(虚拟DOM),是由普通的JS对象来描述DOM对象,因为不是真实的DOM对象,所以叫VirtualDOM真实DOM成员letelement=document.querySelector('#app')
lets
白驹过隙时光荏苒
·
2020-08-11 10:07
大前端学习笔记
微信小程序--类似弹出菜单特效,从右向左滑出
年龄{{item}}课程{{item}}难度{{item}}价格{{item}}设为默认选确定取消js:data:{move_o:0,s_move:true},show_move:function(){
lets
_move
极乐叔
·
2020-08-10 20:33
微信小程序
ES6中Set和Map方法
文章目录1.Set2.Set对象的作用3.Map1.SetSet集合是一种无重复元素的列表声明一个set集合
lets
=newSet();
lets
1=newSet([1,2,3,4,5]);求元素的个数console.log
gxgalaxy
·
2020-08-10 16:42
ES6
JS正则表达式
文章结合实际代码展开讲解:/*正则表达式:本身是一个对象,用于对字符串进行操作*///正则表达式的两种声明方式//直接//给定规则letreg1=/hello/
lets
='helloworld';console.log
mariner_zp
·
2020-08-10 08:01
JavaScript
正则表达式
ES6学习(三)之Set的模拟实现
lets
=newSet([1,2,3])//Set(3){1,2,3}
lets
2=newSet()//Set(0){}
lets
3=newSet(null
xcxiang
·
2020-08-09 16:09
es6
JavaScript
遮罩
@charset"utf-8";@font-face{font-family:'
Lets
-go-Digital';src:url('..
多哥仁慈的骆驼
·
2020-08-09 11:11
Vue
请假时间算法
functiondiffTime(begin_time,endtime){begin_time=newDate(begin_time)endtime=newDate(endtime)//开始时间的小时和分钟
lets
_h
weixin_30436101
·
2020-08-08 23:24
记项目 常用js方法
//string格式化repalceHtml(str){
lets
1=str.replace(//g,'')
lets
2=s1.replace(//g,'')//去htmllets3=s2.replace(
lqzh_101224
·
2020-08-08 17:37
js
微软夏令营笔试测验第一题 Array Partition
GivenanintegerarrayA1,A2…AN,youareaskedtosplitthearrayintothreecontinuousparts:A1,A2…Ap|Ap+1,Ap+2,…Aq|Aq+1,Aq+2,…AN.
LetS
1
njudongchen
·
2020-08-07 15:07
动态规划
编程练习
vue 路由导航守卫 全局前置守卫
VueRouter.prototype.pushVueRouter.prototype.push=function(location,onComplete,onAbort){if(typeoflocation=="string"){
lets
昨夜太平长安888
·
2020-08-07 11:44
js对浏览器类型和内核的判断
判断浏览器内核functioncheckCore(){constSys={};constua=navigator.userAgent.toLowerCase();
lets
;(s=ua.match(/msie
小马裤
·
2020-08-07 11:00
个人笔记
Google play支付如何用nodejs验证订单完成的合法性
require('crypto');//把字符串分割为一连串更小的部分functionchunk_split(paramString,paramLength,paramEnd='\n'){letp=[];
lets
szc10
·
2020-08-05 02:28
Google
【 CodeForces - 1060B 】Maximum Sum of Digits(思维,构造)
题干:Youaregivenapositiveintegernn.
LetS
(x)S(x)besumofdigitsinbase10representationofxx,forexample,S(123)
韬光养晦_
·
2020-08-04 17:13
Codeforce~
思维
CodeForces 1060 B Maximum Sum of Digits
MaximumSumofDigitsYouaregivenapositiveintegern.
LetS
(x)S(x)besumofdigitsinbase10representationofxx,forexample
dbt3498
·
2020-08-04 13:13
es6 用法小示例
并要求每行显示6个这样的数,每两个数字之间用逗号隔开,每行最后一个数字后面没有逗号,效果图如下解法consts=[...Array(Math.floor(2000/105))].map((_,i)=>{
lets
pardon110
·
2020-08-04 02:40
javascript
nodejs
javascript
es6数组map,reduce,filter,findIndex,forEach,some,every
console.log(arr.map((n)=>n*n));//[1,4,9,16]console.log(arr.map((n)=>n-1));//[0,1,2,3]2.reduce(汇总)1堆对一个求和或者求平均数
lets
ヾ(✿゚▽゚)ノ苗苗ヾ(✿゚▽゚)ノ
·
2020-08-03 23:24
es6
ES6学习笔记3---Symbol
lets
=Symbol();typeofs//
weixin_33806914
·
2020-08-03 11:44
js实现千位分隔符运算
方法一:functionformat(str){
lets
=''letcount=0for(leti=str.length-1;i>=0;i--){s=str[i]+scount++if(count%3=
flitrue
·
2020-08-02 17:13
JavaScript
小程序实现v-html,将搜索结果中搜索的文字标记
使用小程序组将rich-text,将内容用正则匹配并用${this.inputValue}替换i.categoryLabel=this.setColor(i.categoryName)setColor(str){
lets
sink_sand
·
2020-08-01 05:20
小程序疑难杂症合集
小程序
小程序视图更新数组某一项
然后改变数组此下标对象里对应的bull值,最后this.setData({list:list});相当于把整个数组渲染了一遍(虽然他有缓存机制,只会改变你改动的部分视图),但是还是感觉消耗性能,最后投机取巧换了一种思路:
lets
骑着代码去流浪
·
2020-08-01 05:43
钉钉小程序
微信小程序
Harmony Pairs
链接:https://ac.nowcoder.com/acm/contest/5671/H来源:牛客网题目描述Roundgodisobsessiveaboutnumbers.
LetS
(x)S(x)S(x
qq_45323960
·
2020-07-31 23:16
数位dp
ACM
微信小程序常用的方法(留着用)
functionzero_fill_hex(num,digits){
lets
=num.toString(16);while(s.length{Taro.navigateBack({});});}else
XIAOYANG55555
·
2020-07-31 15:35
JavaScript正则表达式/g的坑
;}else{constr=regp;
lets
=string;letarr=newSet();do{letcul=r.exec(s);
csyz12138
·
2020-07-30 19:49
js
Swift3 String 一些操作
title="aaaaaa"//获取字符串的子串
lets
="abcdefg"vars2=s.substring(from:s.index(s.startIndex,offsetBy:3))print("
巴糖
·
2020-07-30 18:30
VIM-项目树插件(NERDTree)
/nerdtree'配置打开/关闭快捷键配置,通过快捷键ctr+n,进行项目树的切换map:NERDTreeToggle当打开vim无指定文件时,自动打开项目树autocmdStdinReadPre*
lets
特立独行的小z
·
2020-07-30 06:32
软件工具
#
VIM
项目树插件
NerdTree
为什么说JavaScript中的函数是其实是对象
函数对于整个关于类的结构深入分析在https://blog.csdn.net/singlever/article/details/105113968//2020.3.9更新扩展所有的变量类型都是由其变量的构造函数所构成
lets
singlever
·
2020-07-30 00:56
js'随笔
ES6-字符串扩展-includes(), startsWith(), endsWith()
lets
='Helloworld!';s.startsWith('Hello')//tr
宋极北
·
2020-07-29 00:43
ES6
工具函数封装:时分秒转时间戳、时间戳转时分秒
格式化时间exportconstformatTime=(time)=>{lethours=Math.floor(time/3600);letmin=Math.floor((time%3600)/60);
lets
寄芥末
·
2020-07-28 21:42
工具函数
时分秒转时间戳
时间戳转时分秒
让我们一起来起花名吧
原文:https://xcoder.in/2016/02/24/
lets
-hua/起因起因是我一个叫『小龙』的好基友由于某些原因离职去了一家跟阿里一样有着『花名文化』的公司,于是开始为花名犯愁。
weixin_34162695
·
2020-07-28 18:35
更新Let's Encrypt SSL证书提示certbot-auto无法升级怎么办
Upgradingcertbot-auto0.38.0to0.39.0...Couldn'tdownloadhttps://raw.githubusercontent.com/certbot/certbot/v0.39.0/
lets
嘀咕博客
·
2020-07-28 06:14
certbot-auto
https
Lets
Encrypt 通过脚本快速创建证书
下载到本地wgethttps://raw.githubusercontent.com/xdtianyu/scripts/master/
lets
-encrypt/letsencrypt.confwgethttps
justinytsoft
·
2020-07-28 01:06
java
tomcat
最小循环节+KMP/LCP+后缀数组 7.26牛客暑期多校训练营三 E
EddyhasplayedwithastringSforalongtimeandwondershowcouldmakeitmoreenjoyable.Eddycomesupwithfollowingprocedure:Foreachiin[0,|S|-1],
letS
木直
·
2020-07-27 16:29
大二暑假集训
使用certbot为网站服务添加https免费安全认证
certbot的网站主页https://certbot.eff.org/
lets
-encrypt/centosrhel7-nginx以下主要记录在操作时候的一些注意事项一、准备工作1、首先要有域名,配置好
qq_37587216
·
2020-07-16 06:52
web
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他