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
JS: 继承
原型链继承//原型模式functionParents(){this.name='Parents';}Parents.prototype.getName=function(){
returnthis
.name
郭佬
·
2019-03-02 16:00
JavaScript数据结构与算法之二叉树添加/删除节点操作示例
functionNode(data,left,right){this.data=data;this.left=left;this.right=right;this.show=show;}functionshow(){
returnthis
.data
白杨-M
·
2019-03-01 12:11
JavaScript数据结构与算法之二叉树实现查找最小值、最大值、给定值算法示例
functionNode(data,left,right){this.data=data;this.left=left;this.right=right;this.show=show;}functionshow(){
returnthis
.data
白杨-M
·
2019-03-01 11:51
读vue源码(1)
Vue.mixin=function(mixin:Object){this.options=mergeOptions(this.options,mixin)
returnthis
}gobal-api/use.js
anthonyliu
·
2019-02-28 10:00
style样式:json对象和字符串相互转化
(letiinstyle){s.push(i+':'+style[i]);}s=s.join(';')console.log(s)returns}使用方法:computedClassObject(){
returnthis
.sh
honey缘木鱼
·
2019-02-27 18:44
小程序
cocos2d-js tableView
_super(ctx);},getNode:function(){
returnthis
.children[0];}});vartabl
o向阳花o
·
2019-02-27 11:28
cocos
cocos2d-js
[JavaScript] 前端模块编程实现
functionc(){}functiond(){}后来采用了js的对象写法,添加一个单独的命名空间varspace={a:1,b:2,c:function(){console.log('我是c');
returnthis
.a
大月山
·
2019-02-22 12:10
rxjs switchMap操作符
getMajorByPage(page:number,size:number):Observable>{constparams={page:page.toString(),size:size.toString()};
returnthis
鲸冬香
·
2019-02-22 00:00
angular
jQuery,js如何扩展自定义方法
myMethod:function(){alert('myMethod');}})})(jQuery)jsString扩展方法String.prototype.repalceA=function(){
returnthis
.replace
改个名字吧
·
2019-02-21 15:00
javascript基础的查缺补漏
}}1+a//=>3'1'+a//=>'12'优先级:Symbol.toPrimitive>valueOf>toString'a'++'b'因为+'b'会被强制转换成NaNfunctionFoo(){
returnthis
房东家的猫
·
2019-02-19 13:00
对一道【脉脉】上 头条 算法面试题的思考
网页pool开始{{index}}{{index}}varvm=newVue({el:'#vue_det',data:{list:[],i:0},methods:{details:function(){
returnthis
.site
SuperX
·
2019-02-19 00:00
python
javascript
v-model涉及和computed计算属性双向绑定失效的问题
今天在使用v-model和计算属性时,发现双向绑定失效问题,浏览器警告如下计算属性部分代码:computed:{editable(){
returnthis
.type.power==0?
人狠话不多_絮
·
2019-02-18 10:09
vue
v-model涉及和computed计算属性双向绑定失效的问题
今天在使用v-model和计算属性时,发现双向绑定失效问题,浏览器警告如下计算属性部分代码:computed:{editable(){
returnthis
.type.power==0?
人狠话不多_絮
·
2019-02-18 10:09
vue
vue源码分析系列之响应式数据(三)
computed:{total(){
returnthis
.a+this.b}}本章节我们继续探究这个计算属性的相关流程。initComputed//initComputed(vm,
A_大白
·
2019-02-17 00:00
源码
vue.js
javascript
常见的6种JavaScript设计模式
构造函数模式/***构造一个动物的函数*/functionAnimal(name,color){this.name=name;this.color=color;this.getName=function(){
returnthis
.name
Gen_
·
2019-02-14 15:22
js实现字典结构
//字典数据结构functionDictionary(){this.items={};//检查是否有某一个键this.has=function(key){
returnthis
.items.hasOwnProperty
guoxiaxing
·
2019-02-11 18:10
Javascript
this的指向
varo={m:function(){
returnthis
;},n:function(){functiontest()
小燕子小圆子
·
2019-02-01 17:54
Java多线程17 使用ThreadLocal重新设计一个上下文设计模式
publicStringgetCardId(){returncardId;}publicvoidsetCardId(StringcardId){this.cardId=cardId;}publicStringgetName(){
returnthis
.name
香沙小熊
·
2019-01-28 16:06
js new到底做了什么?如何重写new?
构造函数()执行顺序在堆中开辟对象内存空间,记为obj在obj中添加__proto__属性并指向构造函数.prototype将构造函数中的this指向obj执行构造函数内语句若构造函数中没有reutrn或
returnthis
漫疏狂
·
2019-01-24 11:46
js
ecmascript6.0
【ES规范】ES6 简化对象写法
常规的写法:varname='kobe';varage=39;varobj={name:name,age:age,getName:function(){
returnthis
.name}};console.log
焦糖花粥
·
2019-01-21 15:39
ECMAScript
vue 生命周期
还是先举例子:{{message}}exportdefault{data(){return{message:"测试生命周期以及路由"};},computed:{route(){
returnthis
.
耳东蜗牛
·
2019-01-20 21:47
Vue
Vue
vue 报错: [Vue warn]: Computed property "checkall" was assigned to but it has no setter.
报错如图:报错原因:computed:{checkall:{//购物车与checked数量一致时,全选为trueget(){
returnthis
.cartCheckedCount===this.items.length
yaxi_yaxi_yaxi
·
2019-01-19 18:36
vue
vue监听全局变量
可能因为格式的问题,无法再组件里面直接监听全局变量,通过compute属性来更新computed:{ listenshowpage1(){
returnthis
.
a873054267
·
2019-01-17 22:48
vue
Object
=name;6this.age=age;7}8//publicinthashCode(){9//returnsuper.hashCode();10//}11publicinthashCode(){12
returnthis
Risen
·
2019-01-16 12:00
JavaSE——三个特殊的类:包装类
IntDemo实际上就是int数据类型的包装类classIntDemo{privateintnum;publicIntDemo(intnum){this.num=num;}publicintintValue(){
returnthis
.num
LiLiLiLaLa
·
2019-01-15 22:05
Java
C++快速入门--1
include"iostream"usingnamespacestd;intmain(){cout>r;//标准输入constdoublepi=3.14;s=pi*r*r;c=2*r*pi;coutm_r=r;}doublegetR(){
returnthis
丶幻一
·
2019-01-12 16:50
C
C++
CEF 右键添加开发者选项菜单项
MyClientHandler来继承CefContextMenuHandler这个抽象类,然对其下面的纯虚函数进行重写1.获得事件处理器virtualCefRefPtrGetContextMenuHandler(){
returnthis
车臣
·
2019-01-10 17:00
继承的几种方式
1、原型链如何实现functionSuperType(){this.color='green';}SuperType.prototype.getSuperColor=function(){
returnthis
.color
asimpleday
·
2019-01-09 10:19
js二分查找树实现
functionNode(data,left,right){this.data=data;this.left=left;this.right=right;this.show=show}functionshow(){
returnthis
.data
科比net
·
2019-01-08 23:00
call, apply, bind, caller, callee解释
param1,...,paramX);//情况一vara=1Object.prototype.toString.call(a)//[objectNumber]//情况二vara=function(){
returnthis
.a
TheoLin
·
2019-01-07 15:45
【ECMAScript 5_6_7】5、ES6——简化的对象写法
this.x=x}};05_简化的对象写法letusername='onedean'letage=20letobj={username:username,age:age,getName:function(){
returnthis
.userna
Onedean
·
2019-01-07 00:33
ECMAScript
Vue的computed计算属性是如何实现的
{{full}}newVue({el:'#app',data:{msg:'hello',},computed:{full(){
returnthis
.msg+'world';},},mounted(){setTim
_记忆
·
2019-01-04 14:00
JS继承的方法
__proto__=Human.prototype执行Human.call(this,x,y,z.....)
returnthis
使用prototype的两种继承方法使用es5,用prototype实现继承
Nelson_sylar
·
2019-01-02 10:36
JavaScript new 关键字
例如:functionPerson(name,age){this.name=name;this.age=age;}Person.prototype.getName=function(){
returnthis
.name
HelloJames
·
2019-01-01 19:58
浅谈class私有变量
在JS中,生成实例对象的传统方法是通过构造函数,如下所示:functionA(x){this.x=x}//在原型链上挂载原型方法A.prototype.showX=function(){
returnthis
.x
格子熊
·
2018-12-28 18:00
computed里面定义的内容area,但是报错"area" was assigned to but it has no setter
computed:{area:{get:function(){
returnthis
.myAddressProvince+this.myAddressCity+this.myAddresscounty;/
夏天想
·
2018-12-26 14:15
vue
一、数据结构分类
classStack{constructor(){this.items=[]}//入栈push(element){this.items.push(element)}//出栈pop(){
returnthis
.items.pop
谷子多
·
2018-12-22 17:26
vue自定义下拉框组件
",props:['scale','selections'],data(){return{isDrop:false,nowIndex:0,};},computed:{selectionValue(){
returnthis
.selections.length
QIANG123___
·
2018-12-21 17:08
vue
angular2--前端对接接口方法
/p/5660039.html2、在\src\services\httpService.ts中创建接口路径:post方法:publicUserRegister(params:any):Promise{
returnthis
.http.post
Ariel_ckr
·
2018-12-20 10:43
Vue 之 Vue-Cookies
$cookies.set(keyName,time)//
returnthis
获取cookiethis.$cookies.get(key
小丶侯
·
2018-12-13 17:20
vue路由传参的几种方式
detail/:id',component:detail}//步骤三//这里也可以在生命周期的钩子函数create里面接收id,然后设置id//detail页面接收传来的id参数computed:{id(){
returnthis
前端来入坑
·
2018-12-13 12:33
一道函数题考察基本功
题目:代码如下,求输出结果functionFoo(){getName=function(){console.log(1);}
returnthis
;}Foo.getName=function(){console.log
陈裔松的技术博客
·
2018-12-12 22:22
Vue.js 学习笔记
el:'#example',data:{message:'Hello'},computed:{//计算属性的getterreversedMessage:function(){//`this`指向vm实例
returnthis
.message.split
DurianPudding
·
2018-12-12 17:58
Vue.js
Vue.js 学习笔记
el:'#example',data:{message:'Hello'},computed:{//计算属性的getterreversedMessage:function(){//`this`指向vm实例
returnthis
.message.split
DurianPudding
·
2018-12-12 17:58
Vue.js
【转载】JS - 如何理解 (object.getName = object.getName)() 这段代码?
JavaScript高级程序设计(第3版)》p.183,代码片段如下:varname="TheWindow";varobject={name:"MyObject",getName:function(){
returnthis
.name
喔喔其实就是_
·
2018-12-12 09:05
JavaScript
轮播图的自适应不抖动
return{swiperOption:{pagination:'.swiper-pagination',loop:true,autoplay:5000}}},computed:{showswiper(){
returnthis
.list.length
阳光之城alt
·
2018-12-08 22:30
Kotlin中,函数作为参数,T.()->Unit 和 ()->Unit 的区别
kotlin开发中,经常看到一些系统函数里,用函数作为参数,但是又和我们自己写的不太一样大概是这样子的:publicinlinefunT.apply(block:T.()->Unit):T{block()
returnthis
qijingwang
·
2018-12-07 15:03
kotlin
枚举、常用的几种设计模式
publicenumSex{male("男"),female("女");publicStringtest(){return"ok";}privateStringcnName;publicStringcnName(){
returnthis
.cnName
ChioaR
·
2018-12-04 21:35
ES6 系列之私有变量的实现
_private='private';}getName(){
returnthis
.
阿里云云栖社区
·
2018-11-28 00:00
交互设计
前端优化
javascript
性能
函数
solidity智能合约[23]-payable
123functionpay()publicpayable{}this代表合约地址this代表当前部署的合约地址12345function getThis()publicviewreturns(address){
returnthis
jonson_jackson
·
2018-11-24 22:55
区块链
solidity
智能合约
上一页
46
47
48
49
50
51
52
53
下一页
按字母分类:
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
其他