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
微信qq表情输入文本 vue
getNum}}字exportdefault{data(){return{shareText:'',showEmojiPanel:true,maxNum:300}},computed:{getNum(){
returnthis
.maxNum-this.shareText.length
-Dayer-
·
2020-08-20 03:01
vue
JavaScript
cocos 图片的轮播
property(cc.SpriteFrame)publicspr:cc.SpriteFrame[]=[];@propertypublic_index:number=0;@propertygetindex(){
returnthis
Guard777
·
2020-08-20 03:36
cocoscreator
typescript
tips
returnthis
技巧是的StringBuilder.append可以连续使用。一个方法只能有一个可变长参数,并且这个参数必
好好学习天天引体向上
·
2020-08-20 02:25
Vue 实例属性 计算属性 过滤器——保留两位小数 过滤器——获取时间
计算属性对于比较复杂的逻辑运算,都应该使用计算属性例:{{mag}}{{list}}newVue({el:".itany",data:{mag:'helloVue'},computed:{list:function(){
returnthis
.mag.split
纪美
·
2020-08-20 01:29
东北人都难懂的东北话
东北人都难懂的东北话2009年09月27日>24)&0xff;
returnthis
.FONTMAP.substring(2*(id-1),2*id);}"color=#000000size=4>振兴东北
iteye_19975
·
2020-08-20 00:28
jQuery自定义方法功能的实现
fn.highlight.defaults,options);this.css('backgroundColor',opts.backgroundColor).css('color',opts.color);
returnthis
IMISer
·
2020-08-19 19:10
冻结表格(tablefix)
*http://www.otchy.net*/(function($){$.fn.tablefix=function(options){
returnthis
.each(function(index){/
qkhhimkfrgw
·
2020-08-19 18:40
jQuery
javaScript
Vuex异步请求数据后,在组件中获取状态的方法
由于Vuex的状态存储是响应式的,从store实例中读取状态最简单的方法就是在计算属性中返回某个状态即如下方法,页面正常更新:computed:{userAva:function(){
returnthis
Pany丨
·
2020-08-19 18:40
Vue
vue
vuex
异步
js store
function(imeWeb){varStoreMang=function(){this.stores={};};StoreMang.prototype.get=function(storeId){
returnthis
.stores
_嘿嘿_
·
2020-08-19 18:51
java内部类注意事项
classcode2//方法三staticclasscode2{privateStrings;publiccode2(Strings){this.s=s;}publicStringReadString(){
returnthis
.s
kala0
·
2020-08-19 18:24
Java
抽象类的定义和使用
abstractclassPerson{privateStringname;publicStringgetName(){
returnthis
.name;}publicvoidsetName(){this.name
YOUWU_BQ
·
2020-08-19 16:58
Java
Vuex之getter
比如有这样一个应用场景,我们有一个考试得分的数组,我们需要在很多页面使用,但是只显示不及格的,那么我们每个页面都要这样:computed:{scoreArr(){
returnthis
.
wade3po
·
2020-08-19 16:33
Herbinet 实体类Entity 主键ID 实现支持Oracle自增序列allocationSize 属性的坑
GenerationType.SEQUENCE,generator="***_SEQ")@SequenceGenerator(name="****_SEQ",sequenceName="***_SEQ")publicLonggetId(){
returnthis
.id
策码狂奔
·
2020-08-19 16:19
java
数据库
Vue工程师,这些开发技巧你都会吗?
路由参数解耦一般在组件内使用路由参数,大多数人会这样做:exportdefault{methods:{getParamsId(){
returnthis
.
宁_Yi
·
2020-08-19 15:40
es6 Class 的私有方法
_bar(baz);}//私有方法_bar(baz){
returnthis
.snaf=baz;}//...}上面代码中,_bar方法前面的下划线,表示这是一个只限于内部使用的私有方法。
ixygj197875
·
2020-08-19 10:24
ES6标准入门
【p1093-奖学金】解题记录
=s.sum)
returnthis
->sum>s.sum;if(this->chinese!=s.chi
Zhaosiyii
·
2020-08-19 08:23
洛谷题解
class定义私有属性和私有方法
_bar(baz);}//私有方法_bar(baz){
returnthis
.baz=baz;}}constinstance=newFoo();instance.foo(1);instance.baz;
Wangdanting123
·
2020-08-19 08:23
javascript中私有属性的实现。
this[key];},get:function(key){
returnthis
[key];},getAll:function(){varkeys=Object.keys(this);varret={}
theanarkh
·
2020-08-19 08:56
javascript
ES6 Class 定义私有属性或私有方法
_bar(baz);}//私有方法_bar(baz){
returnthis
.snaf=baz;}//...}另一种方法就是索性将私有方法移出模块,因为模块内
雾里看花叹朦胧
·
2020-08-19 06:36
es6
ES5的继承与ES6的继承
functionobj2(x,y){this.name=x,this.age=y}创建一个构造函数(构造方法用来产生对象)obj2.prototype.getName=function(){
returnthis
.name
yuan5801551
·
2020-08-19 06:17
JavaScirpt
super与this
this代表对象本身,指向对象本身的一个指针;用法分为三种:1,普通的直接应用2,当形参与成员名同名时,用this来区分publicintGetAge(intage){this.age=age;
returnthis
.age
泡椒小凤爪233
·
2020-08-19 05:10
ES6学习:第十八章 类
classfruit{constructor(name,color){this.name=name;this.color=color;}getfirstName(){console.log('get');
returnthis
.name
梦见阳光。。
·
2020-08-19 05:08
ES6
js 中间件
=='function'){//throw'middlewaremustbeafunction';//}//this.cache.push(fn);//
returnthis
;//}////Middleware
灿尔哈擦苏
·
2020-08-19 04:43
web前端开发
js
前端面试题——15.谈谈你对this对象的理解
(怎么可以不举几个栗子呢)栗子1:varname='Jenny';functionperson(){
returnthis
.name;}console.log(this.name);//Jennyconsole.log
浅端
·
2020-08-19 03:04
前端面试题
JS基础
es5类与es6类的写法
class语法糖,但是我们仍然需要明白原生的写法法es5写法functionPoint(x,y){this.x=x;this.y=y;}Point.prototype.toString=function(){
returnthis
.x
ldz_miantiao
·
2020-08-19 03:59
JavaScript学习
ES5的继承
即要继承的对象的实例)原型链式继承functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
Super--rookie
·
2020-08-19 03:59
前端
JS
vue 计算属性 方法 监听器 简单使用
计算属性传值get:function(){returna},set:function(value){this.a=value;}//闭包返回test(){returnfunction(index,value){
returnthis
.b
YHosiris
·
2020-08-19 03:03
vue
js继承的几种方法和es6继承方法
1functionF(){}23//原型属性,原型方法:45F.prototype.name="Lee";67F.prototype.age=33;89F.prototype.run=function(){1011
returnthis
.name
q414620221
·
2020-08-19 02:27
Js
简述vuex实现原理
实现原理实际上是通过Vue的实例化来实现这里通过计数器来说明首先实例化两个Vue对象,通过他测试是否能统一管理状态#root和#root2newVue({el:'#root',computed:{data(){
returnthis
bjl008
·
2020-08-19 01:49
vue学习日志
ES6继承(类,构造函数)
,原型继承functionPerson(name,age){this.name=name;//属性this.age=age;}Person.prototype.showName=function(){
returnthis
.name
wendZzz
·
2020-08-19 01:44
ES6新时代
前端学习小记-ES5实现ES6中的extends继承
这种方式无法在生成对象时进行传参//且由classA生成的实例对象会共享name属性functionclassA(){this.name='hello';}classA.prototype.getName=function(){
returnthis
.name
灵左
·
2020-08-19 00:29
前端
JavaScript
小记
ES6 中 Symbol.split的用法
classSplit1{constructor(value){this.value=value;}[Symbol.split](string){varindex=string.indexOf(this.value);
returnthis
.value
weixin_33854644
·
2020-08-19 00:27
模拟面试
1.jquery的链式编程以及链式编程是怎么实现的可以一直.下去,但是返回的是一个对象,然后
returnthis
2.vue的双向绑定以及双向绑定的原理3.rem布局的原理,结合媒体查询和less使用4.
cj_jax
·
2020-08-19 00:35
ES6 class 技术点拾遗
方法之间不需要加分号classPoint{constructor(x,y){this.x=x;this.y=y;}toString(){return'('+this.x+','+this.y+')';}getX(){
returnthis
.x
weixin_34062329
·
2020-08-18 22:40
vue2.0生命周期、计算属性、watch的执行顺序
this.PageIndex=2},mounted(){this.getAppData()console.log('mounted')},computed:{apps(){console.log('computed')
returnthis
weixin_33806300
·
2020-08-18 22:39
原生代码实现Promise
varstate='pending';vardoneList=[];this.then=function(done){switch(state){case"pending":doneList.push(done);
returnthis
superXX07
·
2020-08-18 22:46
原型链继承的例子 和new 一个对象的过程
document.getElementById(id)}Elem.prototype.html=function(val){varelem=this.elem;if(val){elem.innerHTML=val;
returnthis
propoet
·
2020-08-18 22:56
javascript基础
原型 原型链 构造函数 继承(下)
通过newXiaolu()创建一个xiaolu1的对象,然后进行相关打印functionXiaolu(){this.name="小鹿"}Xiaolu.prototype.code=function(){
returnthis
.name
Coder小鹿
·
2020-08-18 21:05
javascript
es6 里class类的封装
传统方式{/*传统模式*/functionperson(){this.name=null;this.sex=null;}person.prototype.eat=function(){
returnthis
.name
ice_bear-
·
2020-08-18 21:44
web前端开发
JAVAEE 学习 之 面向对象:封装及继承
将成员方法及成员变量声明为私有(private).2.再在类中声明一个公有方法以设置或者获取私有变量和方法.例子:classexample{privateintage;publicintgetAge{
returnthis
.age
qq_39563155
·
2020-08-18 21:52
javaee
一张图告诉你 this 的指向
废话不多说,直接上图:图意为方法的执行处代码决定this是谁,其执行代码为object.f(),则f中的this===object可能还是不清楚,举个栗子说明:全局方法中的thisfunctionf(){
returnthis
剪云者。
·
2020-08-18 21:05
javascript
前端程序员经常忽视的一个JavaScript面试题
JavaScript面试题来源|https://segmentfault.com/a/1190000021860580functionFoo(){getName=function(){alert(1);};
returnthis
it_二航
·
2020-08-18 21:19
vue2.0学习笔记 ——watch
一个价钱:{{prize}}总价:{{xianjia}}-+varvm=newVue({el:'#app',data:{n:1,prize:30},computed:{xianjia:function(){
returnthis
.n
qq_19318067
·
2020-08-18 21:09
vue2.0
vue.js2.0关于computed、methods、watch、created的区别
{{ss}}exportdefault{data(){return{list:''}},computed:{ss:function(){
returnthis
.list+'zheshis'},},created
milli236
·
2020-08-18 21:14
Vue.js
vue 后台管理系统菜单权限管理
this.username){
returnthis
.$message.error("请输入用户名");}if(!this.password){
returnthis
.
adai19850204
·
2020-08-18 19:56
javascript
原生js实现继承
原型链继承functionFather(){this.status=true;}Father.prototype.getSuper=function(){
returnthis
.status;};functionSon
a742794196
·
2020-08-18 19:14
js原型链添加方法 求差集
如果B={1,2,3}那么:B关于A的补为{4,5},B-A=空集原型上定义方法:Array.prototype.diff=function(B){
returnthis
.filter(A=>{returnB.indexOf
阿猫阿狗哈
·
2020-08-18 19:00
web前端
计算机基础
基于Redis实现分布式消息队列(2)
具体的业务场景是任务队列,代码设计如下:publicabstractclassTaskQueue{privatefinalStringname;publicStringgetName(){
returnthis
.name
stationxp
·
2020-08-18 16:59
碎碎念
友元函数、类和运算符重载
友元类classA{friendclassB;public:voidDisplay(){couta=a;this->b=b;}intgetA(){
returnthis
->a;}protected:private
poiiy333
·
2020-08-18 15:25
C++
前端JavaScript面试技巧笔记(2)
知识点#构造函数一般构造函数的函数名要大写开头;例:functionFoo(name,age){this.name=name;this.age=age;this.class='class-1';//
returnthis
三回啊三回
·
2020-08-18 13:32
JavaScript
上一页
19
20
21
22
23
24
25
26
下一页
按字母分类:
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
其他