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
Flutter数据渲染 嵌套遍历的坑
type'List'isnotasubtypeoftype'List'解决方法:第二层之后的遍历,加上widget声明value.list.map((e){}).toList()List_getAttrWidget(){//第一层渲染
returnthis
Kac0
·
2023-01-30 03:46
docker部署项目
RestControllerpublicclassUserController{@ResourceprivateUserServiceuserService;@GetMapping("/users")publicListqueryUsers(){
returnthis
.userService.queryUsers
4f03f33f33be
·
2023-01-29 18:41
Js面试题
1.window.val=1;varjson={val:10,a:function(){this.val*=2;
returnthis
.val;}}console.log(json.a());vara=json.a
大佬_娜
·
2023-01-29 17:50
JavaScript篇
/apply都是指小括号中的那个对象借用前面的对象的方法;不同的是参数形式,call传的值;apply传的是数组varlane={name:'lane',description:function(){
returnthis
.name
gogeek
·
2023-01-28 22:25
Java中Collections.sort()针对List排序应用
publicclassSortAimplementsComparablepublicintcompareTo(SortAa){//实现方法/***returna.getOrder()-this.order;//升序*
returnthis
.order-a.getOrder
老伯X
·
2023-01-28 17:24
复习数组
1split('')切割符把字符串分割为数组引号间用空格{{huan}}newVue({el:'.app',data:{mag:'hellvue'},computed:{huan:function(){
returnthis
.mag.split
Promise_84fe
·
2023-01-27 14:22
前端系统学习 8. 继承
functionParent(){this.name='parentName'this.actions=['eat','drink']}Parent.prototype.getName=function(){
returnthis
.name
stanf1l
·
2023-01-27 13:59
JS实现单例模式
this.instance){this.instance=newSingleton()}
returnthis
.instance}vara=Singleton.getInstance()va
凯凯frank
·
2023-01-27 10:42
LazyMan (js)
[]functionf(e){}f.prototype.eat=function(e){varfn=function(){console.log('eat|'+e)调用()}list.push(fn)
returnthis
jiangji
·
2023-01-25 21:00
javascript和python最大的区别
vspython中的字典js的对象或者数组中,能存放函数:varperson={firstName:"John",lastName:"Doe",id:5566,fullName:function(){
returnthis
.firstName
虚坏叔叔
·
2023-01-13 13:40
经验
javascript
前端
开发语言
Vue中的computed的用法
一、computed简写形式姓:名:姓名:exportdefault{computed:{fullName(){
returnthis
.surname+'~'+this.name}},data
勇敢小陈
·
2023-01-12 11:28
vue.js
前端
javascript
C#一维空间简单操作
;publicdoubleMin;//////构造函数/////////publicXRange(doublea,doubleb){if(a///中位数//////publicdoubleMid(){
returnthis
.Min
gg_GreenHand
·
2023-01-11 12:19
c#
算法
Vue--计算属性与监视属性
Vue.config.productionTip=false;constvm=newVue({el:'#root',data:{surname:'张',name:'三',},//methods:{//fullname(){//
returnthis
.surname
码码姑娘
·
2023-01-09 06:11
小白的前端开发学习之路
vue.js
webpack
javascript
Vue基础-监视属性watch
methods和计算属性computeds案例今天天气很{{info}}切换天气constvm=newVue({el:'#root',data:{isHot:true},computed:{info(){
returnthis
.isHot
虹橙
·
2023-01-09 06:08
Vue
vue.js
javascript
elementui
前端
tsx vue3 自定义指令
render(){if(this.formMode===‘view’){return{this.modelValue};}constel=({this.entNameList.map((name)=>{
returnthis
.changeHandle
Jack おう
·
2023-01-07 20:49
vue3
javascript
vue.js
typescript
为数组新增一个flat方法(浏览器不支持的话),可以将一个数组打平,并支持传入最深的层级数,得到打平对应层级的新数组
:[1,[2,3,[4,5,[6,7],8]],9].flat(2)得到[1,2,3,4,5,[6,7],8,9]直接上代码:Array.prototype.flat=function(dep=1){
returnthis
.reduce
·
2022-12-29 18:53
javascript
c++实现队列
指针为队列的当前元素指向下一个元素;classQueue23{private:intdata;Queue23*next;public:Queue23();~Queue23(){coutnext;}Queue23*GetThis(){
returnthis
公子文刀
·
2022-12-23 20:25
C+++学习
c++
java
算法
Vue的computed和watch的区别是什么?
//基础使用{{msg}}//计算属性computed:{msg:function(){
returnthis
.name}}在输入框中,改变name值得时候,msg也会跟着改变。
·
2022-12-20 12:21
vue.js
前端必会面试题汇总
代码输出结果varx=3;vary=4;varobj={x:1,y:6,getX:function(){varx=5;returnfunction(){
returnthis
.x;}();},getY:function
·
2022-12-14 15:23
javascript
前端开发技术:rollup打包JavaScript class模块的处理过程分析
classPmsLib{constructor(option){///}getBaseData(){
returnthis
.baseData;}static_jQueryInterface(){retu
招财猫_Martin
·
2022-12-09 13:49
javascript
前端
原型模式
computed计算属性
只有依赖的属性发生改变,才会再次执行函数varvm=newVue({el:"#example",data(){message:'Hello'},computed:{reversedMessage:function(){
returnthis
.message.split
weixin_44914887
·
2022-12-08 14:44
vue
vue.js
javascript
前端
JS继承的几种方式及优缺点
将父类的实例作为子类的原型functionFather(){this.age=10this.phone={first:"华为",second:"小米"}}Father.prototype.getage=function(){
returnthis
.age
前端小马
·
2022-12-06 22:02
JavaScript
javascript
前端
手写数组方法之不改变原数组方法
调用该方法会返回对应的基本类型值,但对于数组一般会直接返回数组本身constarr=[1,2,3]arr.valueOf()===arr实现Array.prototype.myValueOf=function(){
returnthis
A是曾同学呀
·
2022-12-06 02:19
JS
javascript
前端
记spring data mongodb使用Criteria 的一个小坑
当查找包含在某个集合范围使用关键字的in的时候,查看api如下参数是要一个集合publicCriteriain(Collectionc){this.criteria.put("$in",c);
returnthis
w2015ei
·
2022-12-04 12:24
springdata
mongodb
小记
spring
data
mongodb
Criteria
使用递归 向数组中添加某字段
i=1){lettableList=(arr,i)=>{arr.forEach(item=>{item.level=i;if(item.children&&item.children.length){
returnthis
.addLevel
·
2022-11-30 12:09
前端vue.js
使用递归 向数组中添加某字段
i=1){lettableList=(arr,i)=>{arr.forEach(item=>{item.level=i;if(item.children&&item.children.length){
returnthis
.addLevel
·
2022-11-30 11:00
前端vue.js
计算属性的setter与getter
计算属性一般没有set方法,只有get方法绝大多数情况下set都不写computed:fullName:{//set:function()//{////},get:function(){
returnthis
.firstName
usrname为username
·
2022-11-27 12:40
vue学习
javascript
vue.js
html
前端
计算属性的基本使用
constapp=newVue({el:"#app",data://注意此处的花括号{firstName:"Fname",lastName:"Lname",},methods:{getFullName(){
returnthis
.first
usrname为username
·
2022-11-27 12:10
vue学习
vue.js
前端
html
仿游戏热血江湖游戏类27
publicintint_0;publicGClass27(){}publicGClass27(byte[]byte_1){this.Byte_0=byte_1;}publicbyte[]Byte_0{get{
returnthis
.byte
weixin_42132177
·
2022-11-26 16:54
C++仿游戏热血江湖
游戏
java
c++
仿游戏热血江湖游戏类31
publicintFLD_JOBLEVEL{get{
returnthis
.int_4;}set{this.int_4=value;}}publicintFLD_LEVEL{get{
returnthis
.int
weixin_42132177
·
2022-11-26 16:54
C++仿游戏热血江湖
c#
仿游戏热血江湖游戏类25
publicGClass25(){this.Byte_0=newbyte[4];}publicGClass25(byte[]byte_1){this.Byte_0=byte_1;}publicbyte[]Byte_0{get{
returnthis
.byte
weixin_42132177
·
2022-11-26 16:51
C++仿游戏热血江湖
游戏
java
c++
仿游戏热血江湖游戏类GClass17(2)
publicdoubleDouble_12{get{
returnthis
.double_12;}set{this.double_12=value;}}publicdoubleDouble_13{get{
weixin_42132177
·
2022-11-26 16:50
C++仿游戏热血江湖
游戏
java
开发语言
仿游戏热血江湖游戏类
privateGClass22gclass22_0;privateintint_0;voidIDisposable.Dispose(){this.GClass22_0=null;}publicGClass22GClass22_0{get{
returnthis
.gclass
weixin_42132177
·
2022-11-26 16:50
C++仿游戏热血江湖
游戏
java
c++
Games101,作业7(作业代码分析)
求出该光线与场景的交点Intersectioninter=intersect(ray);该函数调用场景bvh类中的求交函数IntersectionScene::intersect(constRay&ray)const{
returnthis
Elsa的迷弟
·
2022-11-21 22:57
Games101
games101
图形学
path
tracing
vue-admin-template tagsView 多标签
拷贝到现有项目中的对应文件夹下@\layout\components\AppMain.vue修改-->exportdefault{name:'AppMain',computed:{cachedViews(){
returnthis
CNJECH
·
2022-11-21 20:13
vue.js
vue
javascript
js对象中的get和set方法的实现
1.直接在对象内使用get用法varuser={info:{name:"张三"},getname(){
returnthis
.info.name;}}console.log(user.info.name)
白羊座的泰迪
·
2022-11-03 16:52
计算属性和监听属性的区别、深度监听
1.计算属性:{{total}}varvm=newVue({el:'#app',data:{num:10,price:8.8,},computed:{total:function(){
returnthis
.num
郑建007
·
2022-11-03 08:40
vue
vue.js
elementui
javascript
TypeScript从入门到精通(二十一)类中的泛型
getGirlsNmae发方法展示女角色的名称classGirlRole{constructor(privategirls:string[]){}getGirlsNmae(index:number):string{
returnthis
.girls
哈哈小猿
·
2022-11-03 08:10
TS学习教程
typescript
javascript
前端
vue修改插槽的样式
active{color:dodgerblue;}方法二:在父组件App中修改设置颜色子组件:exportdefault{name:"tab-bar-item",computed:{activeStyle(){
returnthis
.isActived
dalalalaa
·
2022-11-01 14:02
vue
vue
Vue的computed和watch的区别是什么?
//基础使用{{msg}}//计算属性computed:{msg:function(){
returnthis
.name}}在输入框中,改变name值得时候,msg也会跟着改变。
·
2022-10-18 09:41
vue.js
细说Js中的this
为什么使用this先看个例子:functionidentity(){
returnthis
.name.toUpperCase();}functionspeak(){return"Hello,i'm"+identity.call
·
2022-10-17 17:50
javascript
这道JS经典面试题不要背,今天带你彻底搞懂它!
//afunctionFoo(){getName=function(){console.log(1);}
returnthis
;}//bFoo.getNam
·
2022-10-08 18:17
Vue的computed和watch的区别是什么?
//基础使用{{msg}}//计算属性computed:{msg:function(){
returnthis
.name}}在输入框中,改变name值得时候,msg也会跟着改变。
·
2022-10-06 10:36
vue.js
【TypeScript】贪吃蛇小游戏
食物所对应的元素element:HTMLElement;constructor(){this.element=document.getElementById('food');}//获取食物位置的方法getX(){
returnthis
.element.offsetLef
止水、
·
2022-09-29 09:29
TypeScript
ts
typescript
单步调试找到 cy.visit 的实现源代码(二) - WebSocket?
系列1:单步调试找到cy.visit的实现源代码(一)-找到了BlueBird我们的目标是找到cy.visit是如何向目标网站发起请求的:来到这行:
returnthis
.emit('backend:request
·
2022-09-26 21:03
用js写出数据结构中的自定义队列,利用队列思想写出一个击鼓传花的游戏函数,优先级队列
写出数据结构中的自定义队列classQueue{constructor(){this.item=[];}//1.入队enqueue(ele){this.item.push(ele)}//2.出队delqueue(){
returnthis
.item.shift
-不要说话-
·
2022-09-24 18:11
js数据结构
javascript
数据结构
前端
前端面试题JavaScript篇——2022-09-15
/以下代码执行后,控制台中输出的内容是什么varfullname="a";varobj={fullname:"b",prop:{fullname:"c",getFullname:function(){
returnthis
.fullname
·
2022-09-15 11:33
java比较器 Comparable 和 Comparator 比较
publicclassPeopleimplementsComparable{privateintage;publicPeople(intage){this.age=age;}@OverridepublicintcompareTo(Peopleo){
returnthis
.age-o.age
T泥浆
·
2022-09-07 20:39
java比较器
Comparable
和
Comparator
比较
Uncaught (in promise) Error: Request failed with status code 500
=200)
returnthis
.$message.error("操作失败!!!");this.menuList=res.dat
march of Time
·
2022-09-06 06:42
Java
java
spring
【Vite+vue3】vue3当中keep-alive的使用
exportdefault{computed:{includedComponents(){
returnthis
.$rout
WEB前端李志杰
·
2022-09-01 20:52
Vue
vue.js
前端
javascript
keep-alive
vite
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他