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
returnthis
08-vue计算属性
fullName}}constapp=newVue({el:'#app',data:{firstName:'ten',lastName:'cent'},computed:{fullName:function(){
returnthis
.firstName
plan_ b
·
2021-01-20 17:53
vue框架学习和项目常见问题
js几个经典的题目详解
废话不多说,直接看题目,先不要急着看答案先自己思考,收获更多(长期补仓);一varout=25,inner={out:20,func:function(){varout=30;
returnthis
.out
spademan
·
2021-01-15 19:02
javascript
js 面向对象 实现继承的几种方式
子类都可以访问到,父类一变子类都会改变functionPerson(name){this.name=name;};Person.prototype.getName=function(){//对原型进行扩展
returnthis
.name
一只章鱼哥
·
2021-01-13 15:44
链式调用与proxy
链式调用虽然快乐,可每个方法后面的
returnthis
略显繁琐与丑陋,括号与引号也未免太多。
崮生
·
2021-01-09 01:18
代理
链式方法
vue+element 表格,前端添加筛选条件
vue+element表格,前端添加筛选条件computed:{tables(){constsearch=this.dataForm.plateNoif(search){
returnthis
.carData.filter
辉@_@
·
2020-12-29 17:33
vue
javascript
用Class写一个记住用户离开位置的js插件
_global=(function(){
returnthis
||(0,eval
我在神游
·
2020-12-26 16:34
javascript
css
html
JS设计模式学习(2)
classIterator{constructor(container){this.list=container.list;this.index=0;}next(){if(this.hasNext()){
returnthis
.list
Alfred
·
2020-12-24 10:22
设计模式
javascript
原理
底层
面试
vue中计算属性和方法以及侦听器的对比
{{reversedMessage}}newVue({data:{message:'Hello'},computed:{reversedMessage(){
returnthis
.message.split
陀飞轮h
·
2020-12-18 09:14
==和equals的区别
比较的是两个对象的内容如果一个类没有自己定义equals方法,那么它将继承Object类的equals方法,Object类的equals方法的实现代码如下:booleanequals(Objecto){
returnthis
kenLoong
·
2020-12-16 13:38
java
==和equals的区别
比较的是两个对象的内容如果一个类没有自己定义equals方法,那么它将继承Object类的equals方法,Object类的equals方法的实现代码如下:booleanequals(Objecto){
returnthis
kenLoong
·
2020-12-16 13:37
java
vue watch 监听不到变化_computed 和 watch 的区别
,computed:{sayHi(){
returnthis
.message+""+this.name+thi
王子昂Jacob
·
2020-12-13 23:22
vue
watch
监听不到变化
C#中Clone一个对象的值到另一个对象案例
想只复制值需要你的类实现ICloneable接口,并实现publicobjectClone()方法,其中{returnthisasobject;//引用同一个对象
returnthis
.MemberwiseClone
·
2020-12-12 10:14
moment的使用在vue项目中的使用 (亲测有效)
moment":"^2.22.2",通过版本号复制到package.json中"dependencies"中npminstall在页面引用importMomentfrom'moment';在方法中使用
returnthis
.moment
zhengyuantoo
·
2020-12-11 15:10
vue
栈
this.push=push;this.pop=pop;this.peek=peek;this.clear=clear;this.length=length;}functionpush(element){
returnthis
.dataStore
任小宪
·
2020-12-11 11:07
JavaScript语言精粹2
this.opts=Object.assign({},Service.DEFAULTS,opts)if(window.aladdin&&aladdin.http&&aladdin.http.request){
returnthis
JohnsonGH
·
2020-12-10 02:07
javascript
前端笔试题(闭包2题)
第一题:题目如下:functionFoo(){getName=function(){console.log(1);};
returnthis
;}Foo.getName=function(){console.log
前端辉羽
·
2020-11-30 16:18
实现(3).add(2).minus(1)
Number.prototype所有Number实例都继承自Number.prototypeNumber.prototype.add=function(x){
returnthis
+x;}Number.prototype.minus
戚子宇
·
2020-11-25 21:51
vue-InfiniteScroll无限滚动
..ThereisnomorenewVue({el:'#app',data:function(){return{count:10,loading:false}},computed:{noMore(){
returnthis
.count
ok与ko
·
2020-11-25 19:29
js
vue-lemenet无线滚动
vue
vue 存储对象 不要监听_Vue数据响应式
property:function([parameters]){},getproperty(){},setproperty(value){},};letobj3={姓:"高",名:"圆圆",get姓名(){
returnthis
weixin_39951112
·
2020-11-25 04:52
vue
存储对象
不要监听
手撕数据结构---栈
classStack{constructor(){this.list=[];}push(val){
returnthis
.list.push(val);}getLength
萤火之森-Thezero
·
2020-11-22 20:02
数据结构
数据结构
js 实现栈结构
Stack.prototype.push=function(element){this.items.push(element);}//2.pop()出栈操作Stack.prototype.pop=function(){
returnthis
.items.pop
推堆碓
·
2020-11-22 00:55
js 利用栈 实现十进制转二进制函数
Stack.prototype.push=function(element){this.items.push(element);}//2.pop()出栈操作Stack.prototype.pop=function(){
returnthis
.items.pop
推堆碓
·
2020-11-22 00:45
Vue 数据绑定的原理分析
时去重现渲染视图实现方式有两种方式1定义了同名的get/set就相当于定义了agevartest={_age:18,getage(){console.log('触发get');//直接会this.age会进入死递归的
returnthis
·
2020-11-17 11:37
JavaScript设计模式
varSingleton=function(name){this.name=name}Singleton.instance=nullSingleton.prototype.getName=function(){
returnthis
.name
了凡和纤风
·
2020-11-14 23:25
Vue中使用moment格式化日期格式
moment=momentVue组件中使用dateFormat(row,column){vardate=row[column.property];if(date==undefined){return"";}
returnthis
是日前端
·
2020-11-06 14:39
#Vue
#项目应用中总结
前端
vue
js
前端
vue.js
Vue中遇到过的坑
computed:{editor(){
returnthis
.
都江堰古巨基
·
2020-10-11 01:08
bind、call、apply的区别与用法?
我们先看看下面一段代码:varname='小白'varobj={name:'小明',getName:function(){console.log(this,this.name)
returnthis
.name
伊泽瑞尔灬
·
2020-09-23 09:32
fastjson格式化日期 时间
@JSONField(format="HH:mm")@Column(name="time",length=8)publicTimegetTime(){
returnthis
.time;}
哈哈__哈哈
·
2020-09-17 16:36
java
笔试题整理-原型
functionFoo(){getName=function(){alert(1)}
returnthis
}Foo.getName=function(){alert(2)}Foo.prototype.getName
WindyMorgan
·
2020-09-17 14:28
面试分享
JavaScript实践
技术日常
Java this和static的用法
this.i=i;//用this处理成员变量和形参重名的情况}Leafincreament(){//难点:怎么理解用Leaf修饰的increament的方法,其实将其与int,float等一样就行;i++;
returnthis
Max_Cai
·
2020-09-17 13:37
Java
Js综合面试题-01
变量提升和函数提升2、this指向3、变量查找规则及作用域4、运算符优先级5、实例对象查找属性(隐式原型链)例题:原:functionFoo(){getName=function(){alert(1);
returnthis
七彩猫猫虫
·
2020-09-17 08:50
学习中的小问题
Vue计算属性和监听属性
data(){return{firstName:"",lastName:"",};},computed:{//计算属性的一个方法,方法的返回值作为属性值,可以双向绑定到v-modelfullName(){
returnthis
.firstName
赛尔号-
·
2020-09-17 06:01
Vue
Vue
不同路由,同一个组件
computed:{key(){
returnthis
.$route.name!==undefined?this.$route.name++newDate():this.$rou
linanran1027
·
2020-09-17 05:36
vue
JavaScript 克隆数组最简单的方法
当然也可以使用Array的原型来做:Array.prototype.clone=function(){
returnthis
.slice(0);}vara=[1,2,3];varb=a.clone();b
KimSoft
·
2020-09-17 02:45
JavaScript
typeScript知识点之类的定义和使用
classPerson{name:string;constructor(name:string){//构造函数实例化类的时候触发的方法this.name=name;}getName():string{
returnthis
.name
小糖豆巴拉巴拉
·
2020-09-17 00:06
typescript
类
typescript
javaScript中的ReplaceAll方法
String.prototype.replaceAll=stringReplaceAll;functionstringReplaceAll(AFindText,ARepText){raRegExp=newRegExp(AFindText,"g");
returnthis
.replace
tearzhao
·
2020-09-16 23:17
JavaScript
javascript
function
测试
验证xxxx-xx-xx xx:xx:xx格式的日期,不含闰年
[1-9]{1}))|(1[0|1|2]))-(([0-2]([0-9]{1}))|(3[0|1]))\s([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])$/;
returnthis
mongkey_king
·
2020-09-16 23:21
前端
js两个时间相减得出剩余时长
//a为结束时间timedate(a){vardate1=newDate(a*1000);vardate2=newDate();vardate3=(date1-date2)/1000;
returnthis
.showTime
hy3528
·
2020-09-16 23:23
JavaScript
类的原型对象及链式操作
varCheck=function(){};Check.prototype={checkName:function(){
returnthis
;//返回当前对象,方便调用},checkPassword:function
Soler_lia
·
2020-09-16 22:55
前端系列学习
JS原型
关于全角半角空格的控制
String.prototype.trim=function(){//用来判断全角与半角空格
returnthis
.replace(/(^[\s]*)|([\s]*$)/g,"");//用正则表达式将前后空格
yifeixiang
·
2020-09-16 22:44
JSP
使用反射读取enum的属性
privateintcode;privateStringname;Colour(intcode,Stringname){this.code=code;this.name=name;}publicStringtoName(){
returnthis
.name
iteye_18978
·
2020-09-16 18:36
java
select2在jqueryui dialog里没反应
.$.widget("ui.dialog",$.ui.dialog,{open:function(){
returnthis
.
weixin_30593443
·
2020-09-16 16:40
ui
javascript
二叉树的简单实现 JS
functionNode(data,left,right){this.data=data;this.left=left;this.right=right;this.show=show;functionshow(){
returnthis
.data
闲书
·
2020-09-16 16:23
JS
算法
数据结构
ES6 Class类的部分理解
实例functionAdd(x,y){this.x=x;this.y=y;}Add.prototype.toString=function(){
returnthis
.x+this.y;};varp=newAdd
Doflamingosun
·
2020-09-16 16:13
JavaScript
JavaScript
ES6
JavaScript的常见的几种继承方式
1.原型链继承functionSuper(){this.name=["super"];}Super.prototype.getSuper=function(){
returnthis
.name;
JackieDYH
·
2020-09-16 14:12
JavaScript
继承方式
javascript
js
JS继承、数组
varMammal=function(name){this.name=name}Mammal.prototype.getName=function(){
returnthis
.name}Mammal.prototype.says
zuggs_
·
2020-09-16 13:05
jQuery如何使用自定义方法
$/;
returnthis
.optional(element)||(pattern.test(value));},"CVSS评分只能为0-10之数,保留
会搬砖的猴子
·
2020-09-16 12:34
前端
vue加减法
Title您点击了{{count}}次,奇偶判断:{{qiOu}}+-varvue=newVue({el:"#app",data(){return{count:0}},computed:{qiOu(){
returnthis
.count
海涛高软
·
2020-09-16 12:08
VUE
Java中类名+方法名(){}理解
newTest02();test2.increment();System.out.println(test2.number);}intnumber;Test02increment(){number++;
returnthis
Mr_Pmc
·
2020-09-16 09:42
Java
sicily--1159. Sum
includeusingnamespacestd;classBigNum{public:BigNum(){this->num="0";}BigNum(stringn){this->num=n;}stringgetNum(){
returnthis
chenhq1991
·
2020-09-16 07:22
Sicily
上一页
13
14
15
16
17
18
19
20
下一页
按字母分类:
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
其他