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
jquery封装自己插件的两种方式
1、(function($){//($)防止$冲突$.fn.extend({//jquery方法check:function(){
returnthis
.each(function(){this.checked
微笑小土豆
·
2020-07-27 16:04
js笔记
jpa onetoone fetch join 依然出现N+1条sql
nullable=false,updatable=false)@JsonBackReferencepublicDoDeliveryOrderHeadergetDoDeliveryOrderHeader(){
returnthis
.doDelivery
小小马赛
·
2020-07-27 13:34
Element InfiniteScroll无限滚动的具体使用方法
this.count+=2}}}禁用加载{{i}}加载中...没有更多了exportdefault{data(){return{count:10,loading:false}},computed:{noMore(){
returnthis
.count
·
2020-07-27 10:13
js对象,set和get方法 的三种实现形式
varobj1={name:'Rich',getnameGet(){
returnthis
.name+'a';},setnameSet(name){this.name=name;}};console.info
kuxingseng686
·
2020-07-23 14:41
Blob文件流下载
:any):Observable{
returnthis
.http.request("post",url,{b
qq_43237014
·
2020-07-17 11:07
javascript
new new Foo().getName() 怎么理解
看到一道面试题,提炼出来的结果是functionFoo(){vargetName=function(){console.log(1)}
returnthis
}Foo.prototype.getName=function
饥人谷_汲汲
·
2020-07-16 06:00
C++ algorithm中常用函数——判断容器中是否包含某个值
classStudent{public:Student(stringname,intage):m_name(name),m_age(age){}booloperator==(constStudent&obj)const{
returnthis
清风徐来
·
2020-07-16 05:17
JS继承
原型继承functionSupType(){this.color='red';}SupType.prototype.getColor=function(){console.log(this.color)
returnthis
.color
smile丶ywx
·
2020-07-16 02:10
java 常见线程阻塞及解决方案
publicclassFriend{privatefinalStringname;publicFriend(Stringname){this.name=name;}publicStringgetName(){
returnthis
.name
lj淡然一笑
·
2020-07-16 02:23
JavaScript 理解对象 2 定义多个属性
Object.defineProperties(book,{__year:{value:2014,writable:true},edition:{value:1,writable:true},year:{get:function(){
returnthis
赵者也
·
2020-07-16 01:07
前端常用获取版本号,微信,手机等方法
/);if(ver&&ver.length>1){returnparseInt(ver[1],10);}else{return-1;}}//安卓android:function(){
returnthis
AlisaMfz
·
2020-07-16 01:28
拖动排序 验证码
10元,共30元XML/HTMLCode拖动排序Dragtoorder123456RegisterJavaScriptCode(function($){$.fn.shuffle=function(){
returnthis
.each
iteye_19312
·
2020-07-16 00:44
javascript
原型和原型链——构造函数
一个对象的过程知识点总结:1.构造函数:例:functionFoo(name,age){//构造函数通常以大写字母开头this.name=name;this.age=age;this.class='class-1';//
returnthis
wlwc0627
·
2020-07-15 20:21
函数的bind方法
o上绑定一个新的fn()方法,且该方法中的this指向是o;varname='windowName';varobject1={name:'李雷',sex:'男',getName:function(){
returnthis
.name
前端沐先生
·
2020-07-15 18:08
JavaScript以键值对的形式读写文件
IniConfigString.prototype.trim=function(){
returnthis
.replace(/(^/s+)|(/s+$)/g,'');};IniConfig=function
ANHUIXUE
·
2020-07-15 16:22
java
项目开发
使用Html5+JS做的贪吃蛇小游戏
,组成贪吃蛇和舞台3*/4functionNode(x,y){5this.x=x;6this.y=y;7/**8*比较两个格子是否重合9*/10this.equals=function(x,y){11
returnthis
.x
weixin_34107739
·
2020-07-15 15:08
ES6个人笔记记录——Reflect2
defineProperty,deleteProperty,construct,getPrototypeOf,}=Reflect;letmyObject1={foo:1,bar:2,getbaz(){
returnthis
.foo
whmwjy1997
·
2020-07-15 15:16
javascript
前端学习
Comparable接口中compareTo用法
,所有没有用到compareTo比较,如果声明的是Date、String、Integer或者其他的,可以直接使用compareTo比较,publicintcompareTo(TestModel1o){
returnthis
.str1
zou_hailin226
·
2020-07-15 13:14
Java
Vue的computed和watch的细节全面分析
定义是一个计算属性,类似于过滤器,对绑定到view的数据进行处理1.2get用法data:{firstName:'Foo',lastName:'Bar'},computed:{fullName:function(){
returnthis
.firstName
火狼
·
2020-07-15 12:43
vue.js
javascript
html
element
element-ui
(转载) java实体类的作用
在程序中仅作为数据容器用来持久化存储数据用的POJO(PlainOldJavaObjects)简单的Java对象它的一般格式就是publicclassA{privateStringid;publicStringgetId(){
returnthis
.id
RoboyCore
·
2020-07-15 11:12
JavaScript 实现继承的几种方法
子类都能访问到,父类一变其它的都变了functionPerson(name){this.name=name;};Person.prototype.getName=function(){//对原型进行扩展
returnthis
.name
ygh5123687
·
2020-07-15 11:10
element-ui Drawer抽屉组件封装
Boolean,default:false},direction:{type:String,default:'rtl'}},data(){return{}},computed:{drawer_:{get(){
returnthis
franklin_yuan
·
2020-07-15 10:43
前端设计模式
构造函数模式:functionPerson(name,age){this.name=namethis.age=age}Person.prototype.sayName=function(){
returnthis
.name
Jeff12138
·
2020-07-15 09:11
vuex访问状态对象
在组件中获取使用时可以通过三种方式组件中引入辅助函数(当然先引入store.js,下面引入就不提了)import{mapState}from'vuex'第一种通过计算属性computed:{count(){
returnthis
llaaakk
·
2020-07-15 07:37
vue
vuex mapState使用
5跳转到HelloWorld3展示路由import{mapState}from'vuex'exportdefault{name:'HelloWorld2',computed:{//count(){//
returnthis
weixin_33981932
·
2020-07-15 04:33
android使用全局变量的方法
ApplicationData.classimportandroid.app.Application;publicclassDataextendsApplication{privateStringb;publicStringgetB(){
returnthis
.b
afterrains
·
2020-07-15 00:18
android
稳扎稳打JavaScript(二)——图解对象内存模型
:varchai={name:"柴毛毛",//属性为基本数据类型perosn:{//属性为引用类型address:"xxx",sex:"man"},getName:function(){//属性为函数
returnthis
.name
凌澜星空
·
2020-07-15 00:18
稳扎稳打JavaScript
Vuex 获取getter对象中的值的所有方法(包括module中的getter)
$stroe.getters直接取值computed:{testNum1(){
returnthis
.
trenki
·
2020-07-14 23:42
Vue.js笔记
javascript
vue
Vue进阶(二十七):getters,mapGetters,...mapGetters详解
state这样的状态统一管理树,你可以在vue中用computed计算属性接收这些公共状态,以便使用,当然你也可以在接收原值的基础上对这个值做出一些改造,如computed:{sex:function(){
returnthis
No Silver Bullet
·
2020-07-14 23:19
Vue2
Column
Vue
getters
mapGetters
...mapGetters
vuex的mapState mapActions mapMutations mapGetters在模块module使用详解
exportdefault{computed:{count(){
returnthis
.$store.
songxiugongwang
·
2020-07-14 22:57
elementUI el-date-picker 时间范围设置 固定时间段可选 配置
pickerOptions事件...data(){return{pickerOptions:{disabledDate:(time)=>{//如果函数里处理的数据比较麻烦,也可以单独放在一个函数里,避免data数据太臃肿
returnthis
.dealDisabledDate
天渺工作室
·
2020-07-14 22:00
elementUI
vue
Vue - 计算属性与方法区别
computed:{reversedName(){
returnthis
.name.split('').reverse().join('')}}computed与methods区别计算属性是基于它们的响应式依赖进行缓存的
杜杜杜俊杰
·
2020-07-14 19:17
Vue
生成字符串
*生成数字和大小写字母的字符串**@paramlength*@return*/publicStringgetCharAndNum(intlength){if(length<=0){return"";}
returnthis
.charAndNum
萧李
·
2020-07-14 19:18
java工具类
vue组件中使用vuex中state对象的几种方式
test',data(){return{}}}//第二种方式{{count}}exportdefault{name:'test',data(){return{}},computed:{count(){
returnthis
炉火纯青-旺
·
2020-07-14 18:47
vue
每日一题-0714
functionFoo(){getName=function(){console.log(1);};
returnthis
;}Foo.getName=function(){console.log(2)}Foo.prototype.getName
小妹呀
·
2020-07-14 17:44
vuex 状态管理state、getter、mutation和action
vuex状态管理1.state的三种用法直接获取store的statecomputed:{count(){
returnthis
.
虚年
·
2020-07-14 14:57
vue
JavaScript
RN之 ref和setNativeProps使用
render(){
returnthis
._input=c}/>;},componentDidMount(){this._input.focus();},render(){
returnthis
.
LuZhenBangBlog
·
2020-07-14 14:52
ReactNative
继承的六种方式
实例都包含一个指向原型对象的内部指针functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
想上天的蓝胖子
·
2020-07-14 14:34
用Class写一个记住用户离开位置的js插件
_global=(function(){
returnthis
||
fengxianqi
·
2020-07-14 14:39
vue模糊查询
创建个空字符串来接收数据data(){return{keywords:'',}然后挂载方法methods:{search(keywords){
returnthis
.list.filter(item=>
Big老爹
·
2020-07-14 13:06
vue
模糊查询
vue模糊查询
[TypeScript][CocosCreator]泛型单例
privatestaticinstance:any=null;publicstaticInstance(c:{new():T}):T{if(this.instance==null){this.instance=newc();}
returnthis
.instance
iningwei
·
2020-07-14 12:31
CocosCreator
TypeScript
vuex核心API使用用例
vuex-demo{{msg}} {{userName}}+-x变名字得到用户名constCounter={template:`{{count}}{{name}}`,computed:{count(){
returnthis
huang100qi
·
2020-07-14 11:18
vue
关于闭包和this对象
windows是如何得出的varname="TheWindow";varobject={name:"MyObject",getNameFunc:function(){returnfunction(){
returnthis
.name
df1546328
·
2020-07-14 09:57
写给Java程序员的Kotlin简介(三)
FunctionsandLambdasinfixnotation可以定义中缀函数infixfunInt.add(another:Int):Int{
returnthis
+another}//callexamplevarc
千里山南
·
2020-07-14 08:31
spring boot 程序作为windows服务 并可以重启自己
RestControllerpublicclassTestCmdController{@Value("${spring.config.hello}")privateStringhello;@RequestMapping("/hello")publicStringfrom(){
returnthis
.hello
az44yao
·
2020-07-14 07:55
mongodb数据库基本语法
varPersonSchema=newSchema({name:String,type:String});//查询类似数据PersonSchema.methods.findSimilarTypes=function(cb){
returnthis
.model
MooreLxr
·
2020-07-14 05:58
mongodb
js数据结构与算法 --- 字典
是可以重复的,重复后面的会覆盖前面的(二)代码实现classDictionary{constructor(){this.items={}//存储字典keyvalue}//是否有keyhas(key){
returnthis
.items.hasOwnProperty
Luckyzhoufangbing
·
2020-07-14 05:04
js数据结构和算法
Coda-Slider
.browser.version;vars=screen;vard=document;vare=encodeURIComponent;String.prototype.trim=function(){
returnthis
.replace
只是代号而已
·
2020-07-14 05:40
编程语言区
new 运算符实现细节
functionPerson(name){this.name=name;}Person.prototype.getName=function(){
returnthis
.name}vara=newPsrson
yyyzhen
·
2020-07-14 03:39
关于Vuex中的属性-用法总结
getters,mutations,actions1、statevuex中的state相当于vue中的data使用方法:例如:state定义count:0在vue组件的computed中count(){
returnthis
尹玉龙sir
·
2020-07-14 03:46
前端
框架
vue
store
vuex
上一页
27
28
29
30
31
32
33
34
下一页
按字母分类:
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
其他