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
Vue 学习笔记
newVue({el:'#vue_det',data:{site:"菜鸟教程",url:"www.runoob.com",alexa:"10000"},methods:{details:function(){
returnthis
.site
Pennyswh
·
2020-06-22 03:29
vue
JavaScript
第三篇 关于继承
Joker'this.arr1=['a','b','c','d']}Parent.prototype.arr2=[1,2,3,4]Parent.prototype.toString=function(){
returnthis
Jokeryang
·
2020-06-22 02:13
每日一题(四二)实现 (5).add(3).minus(2) 功能,即:console.log((5).add(3).minus(2)) //6
=='number'){throwTypeError('theaddfunctionneedanumber');}
returnthis
+number;}Numbe
墨语轩
·
2020-06-22 01:12
每日一题
spring cloud-04-feign客户端调用
AutowiredprivateUserRepositoryuserRepository;@GetMapping("/simple/{id}")publicUserfindById(@PathVariableLongid){
returnthis
.userRepository.findOne
西海岸虎皮猫大人
·
2020-06-21 23:30
js function 中的this
varuser={count:1,getCount:function(){
returnthis
.count;}}console.log(user.getCount());//1varotherGetCount
切磋琢磨_FE
·
2020-06-21 22:13
虚拟属性与抽象属性的重写之异同
publicabstractstringAbstractProperty{get;set;}strings;//虚拟属性可以有实现代码publicvirtualstringVritualProperty{get{
returnthis
.s
HNJAVA201103293613
·
2020-06-21 21:42
C#
10 个 Vue 开发技巧,助力成为更好的工程师!
juejin.im/post/5e8a9b1ae51d45470720bdfa路由参数解耦一般在组件内使用路由参数,大多数人会这样做:exportdefault{methods:{getParamsId(){
returnthis
code小生_
·
2020-06-21 21:22
javascript去掉数组中的重复元素
[i];if(typeofa[v]=='undefined'){a[v]=1;}}this.length=0;for(varpina){this[this.length]=p;deletea[p];}
returnthis
zang141588761
·
2020-06-21 15:12
html5
实习面试2:字节跳动前端开发实习生
window.name="bytedance"functionA(){this.name='123'}A.prototype.getA=function(){console.log(this)
returnthis
.name
weixin_43160613
·
2020-06-21 13:01
前端面经
"元素隐式具有 “any” 类型,因为类型“Shared”没有索引签名"问题解决思路
classShared{get(key:string){
returnthis
[key];}set(key:string,v
weixin_34320724
·
2020-06-21 11:40
排序算法——冒泡排序
Array.prototype.bubbleSort=function(){for(vari=0;ithis[j+1]){//ES6语法解构赋值[this[j],this[j+1]]=[this[j+1],this[j]];}}}
returnthis
努力努力再努力!!!
·
2020-06-21 04:47
算法
js中的继承总结
functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
简码书
·
2020-06-21 01:55
JavaScript的回调函数内部this的指向问题以及四种绑定this指向的方法
1、常见回调函数内部的this指向问题我们先看下面这段代码:varo={age:12,say:function(){functioncallback(){
returnthis
.age;}func(callback
面向对象面向君
·
2020-06-20 22:24
前端
-
JS
js 的关键字
1、get/setvartest={_Name:"Limei",_Age:20,getname(){
returnthis
._Name;},setage(age){this.
iwen1992
·
2020-06-18 17:00
关于javascript中的 "继承"
模拟面向对象继承:先上最终的代码functionPerson(name,age){this.name=namethis.age=age}Person.prototype.getName=function(){
returnthis
.name
不困于情
·
2020-06-18 14:03
Vue中监听store中state的数据的方法
computed:{swiper(){
returnthis
.$refs.mySwiper.$swiper;},LifeVal(){
returnthis
.
2Octobering
·
2020-06-17 17:00
利用computed和watch实现监听Vuex状态监听
你可以像这样实现对vuex全局状态的监听computed:{f1(){
returnthis
.
云悠
·
2020-06-14 15:00
javascript权威指南第七版读书笔记(二)
Fucntionfunctionadd(a){
returnthis
.name+this.age+a}console.log(add.call({name:'xxx',age:12},'m'))console.log
房东家的猫
·
2020-06-14 15:00
JS继承
.`);
returnthis
.name;}Person.prototype.constructor=Person;functionStudent(name,
见嘉于世
·
2020-06-14 10:00
Day2-JS-this 关键字
JavaScriptthis关键字一、对象中的thisvarperson={firstName:"John",lastName:"Doe",id:5566,fullName:function(){
returnthis
.firstName
SCAU-gogocj
·
2020-06-12 22:00
如何理解vue的computed?
computed:{foo(){if(this.a>0){
returnthis
.a}else{
returnthis
.b+this.c}}}data(){a:1,b:1,c:1,}众所周知,首次a,b,c
趁你还年轻
·
2020-06-05 04:50
vue.js
javascript
前端
el-upload实现图片压缩自动上传
npmiimage-conversion--save#oryarnaddimage-conversion设置el-upload监听钩子before-upload添加处理方法:beforeUpload(file){
returnthis
dongzhensong
·
2020-05-31 16:50
获取字符重复出现次数,可返回出现次数相同的不同字符
this.str=str;this.resultObj={};this.resultArray=[];this.maxNumber=null;this.elArray=null;}getStrArr(){
returnthis
.str.split
EasonChan94
·
2020-05-31 16:46
bind、call、apply的区别与用法?
我们先看看下面一段代码:varname='小白'varobj={name:'小明',getName:function(){console.log(this,this.name)
returnthis
.name
咸鱼翻身ing
·
2020-05-30 10:13
前端
javascript
JavaScript实现移动端弹窗后禁止滚动
代码如下computed:{popupStatus(){
returnthis
.SendCircle_visible||this.generateInfo_visible||this.isPosterShow
·
2020-05-25 13:42
大佬的分享
Element.prototype.addEventListener;NodeList.prototype.on=function(event,fn){、[]['forEach'].call(this,function(el){el.on(event,fn);});
returnthis
andSunM
·
2020-05-25 11:00
10个Vue开发的技巧
路由参数解耦一般在组件内使用路由参数,大多数人会这样做:exportdefault{methods:{getParamsId(){
returnthis
.
前端-发际线还在
·
2020-05-21 15:00
JavaScript链式调用原理与实现方法详解
这个很容易理解,例如$('text').setStyle('color','red').show();一般的函数调用和链式调用的区别:链式调用完方法后,
returnthis
返回当前调用方法的对象。
WFaceBoss
·
2020-05-16 12:03
vue基础
Computedreversedmessage:"{{reversedMessage}}"computed:{//计算属性的getterreversedMessage:function(){//`this`指向vm实例
returnthis
.message.split
Sun____
·
2020-05-14 22:23
js vue中依赖收集
this.target)
returnthis
.deps.push(this.
冰雪_666
·
2020-05-12 18:20
一道非常经典的JS 面试题 2020年多学习
:Wscats链接:https://github.com/Wscats/articles/issues/85题目functionFoo(){getName=function(){alert(1);};
returnthis
一只大橘
·
2020-05-09 15:54
JavaScript ES6 Class类实现原理详解
例如:functionMold(a,b){this.a=a;this.b=b;}Mold.prototype.count=function(){
returnthis
.a+this.b;};letsum=
阿吉莱加雷
·
2020-05-08 10:52
ES5 模拟 ES6 的 Symbol 实现私有成员功能示例
_name=name;}getname(){
returnthis
._name;}}然而,并没有提供私有属性。比如上面的Person其实是希望在构造的时候传入name,之后不允许修改了。
边城
·
2020-05-06 10:53
jQuery实现的上拉刷新功能组件示例
分享给大家供大家参考,具体如下:技术要点:1、jQuery的插件写法2、上拉刷新步骤分解3、css样式jQuery的插件写法:$.fn.pluginName=function(){
returnthis
.each
廖飞银
·
2020-05-01 10:02
.tsx总结(vue+typescript+less+iview)
:void{}data,computed,watch,methodsdata=>ts变量声明privatevalue=''computed=>get变量(){}publicgetvalueLen(){
returnthis
.v
前端girl吖
·
2020-04-26 14:19
表格的模糊查询和安字段的模糊查询:
filteruser:‘’,tableData(){constfiltername=this.filtername;constfilteruser=this.filteruser;if(filtername){
returnthis
.datas.filter
capricious_1612
·
2020-04-15 16:47
继承之原型链
functionPerson(){//私有属性定义this.personName='person';}//复用方法在原型链定义Person.prototype.getPersonName=function(){
returnthis
樱木夜访流川枫
·
2020-04-14 18:20
JavaScript 模式之获得全局对象 前端早读课第25期
写法varglobal=(function(){
returnthis
||(1,eval)('this');}());上面代码的通用性很强:不仅能在浏览器环境中,获得浏览器的全局对象window,还能在Node.js
知行社
·
2020-04-14 17:22
基于javascript的对象继承
functionSuperType(){this.colors=["red","blue","green"]}SuperType.prototype.getSuperValue=function(){
returnthis
.property
陆霁
·
2020-04-13 18:23
JS面向对象的三种模式
functionperson(name,age){varz=newObject();//1.声明一个对象z.name='xin';//2.向对象添加属性和方法z.age=22;z.sayName=function(){
returnthis
.name
窗的里窗的外
·
2020-04-13 18:50
迭代器,生成器和yield
reset()重置,一般用来抛出异常下面是一个简单的迭代器的例子:functionRange(min,max){//[min,max)return{cur:min,hasNext:function(){
returnthis
.cur
逍天辰
·
2020-04-13 18:37
内存里的那些事
inta){System.out.println("gtter"+this);this.age=a;}publicintgetter(){System.out.println("gtter"+this);
returnthis
.age
李霖神谷
·
2020-04-13 16:09
关于call和apply用法
varaa='张三'functiona(){
returnthis
.aa;}varobj={aa:'李四'}
索哥来了
·
2020-04-13 11:56
this 原型链 继承
bind返回一个新函数,并且使函数内部的this为传入的第一个参数示例:this.x=9;varmodule={x:81,getX:function(){
returnthis
.x;}};module.getX
饥人谷_有点热
·
2020-04-13 10:27
js的bind、call、apply改变this指向
();//输出4利用bind得到多个fn的clone版本varnewFn2=fn.bind('好吧');newFn2();//输出2varname='sally';functionsayName(){
returnthis
.name
WaverL
·
2020-04-13 07:39
自制前段框架Day13.方法调用中的this
目标很简单it('处理一下方法调用的this问题',function(){varscope={user={name:'wangji',getName:function(){
returnthis
.name
蚊子爸爸
·
2020-04-13 06:22
this
this提供了一种更优雅的方式来“隐式”传递一个对象的引用,eg:functionidentify(){
returnthis
.name.toUpperCase();}functionspeak(){vargreeting
魔法少女王遗疯
·
2020-04-13 06:31
2018-09-18
'*****')}}newVue({el:'#app',data:{msg:'hellovue'},methods:{},filters:{},computed:{revMsg:function(){
returnthis
.msg.split
芯域倪
·
2020-04-13 00:15
前端常见设计模式
,year,country){this.name=name;this.year=year;this.country=country;}Car.prototype.sayName=function(){
returnthis
.name
Gia_Mo
·
2020-04-12 21:11
vue computed带参数的计算属性
有时候我们在使用计算属性的时候,需要带参数,这个时候如果这样写会报错:...computed:{test:function(a){
returnthis
.attr1+''+a}}...
笨小孩81
·
2020-04-12 20:47
上一页
35
36
37
38
39
40
41
42
下一页
按字母分类:
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
其他