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
cool node.js 后端接口实现账号密码登录和注册
summary:'H5登录'})asyncLoginByH5(@Body()body){constres:any=awaitthis.businessLoginService.H5Login(body);
returnthis
.ok
一只小阿乐
·
2024-01-24 08:20
node.js
前端
javascript
v-model绑定vuex的state怎么实现?
首先,在组件中使用计算属性来获取Vuex中的状态值:computed:{inputValue:{get(){
returnthis
.
一个大长腿
·
2024-01-22 14:34
前端
javascript
开发语言
Vue计算属性和监听器
{{message.split('').reverse().join('')}}{{reverseMessage}}computed:{reverseMessage:function(){
returnthis
.message.split
ChangLau
·
2024-01-21 23:47
html实现绳子下拉刷新,【UI组件】——用jQuery做一个上拉刷新
技术要点:1、jQuery的插件写法2、上拉刷新步骤分解3、css样式jQuery的插件写法:$.fn.pluginName=function(){
returnthis
.each(function(){
菜材
·
2024-01-21 21:32
html实现绳子下拉刷新
数据侦听
里单个数据变化数据侦听{{'总计:'+total}}varvm=newVue({el:'#app',data:{price:18,number:6},computed:{total:function(){
returnthis
.price
九尾的日志
·
2024-01-20 18:21
面试者经常忽视的一道JavaScript 面试题(附详细解答)
题目functionFoo(){getName=function(){alert(1);};
returnthis
;}Foo.getName=function(){alert(2);};Foo.prototype.getName
Java圈子
·
2024-01-20 05:59
React高阶组件--render props、高阶组件(React学习笔记_06)
props.render(state)方法的参数,暴露到组件外部3,使用props.render()的返回值作为要渲染的内容class组件名extendsReact.Component{state={}render(){
returnthis
.pro
小王子__
·
2024-01-19 17:58
32-Vuex-state
state作为一个“唯一数据源”一、在Vue组件中获得Vuex状态1.直接方式{{$store.state.count}}2.利用计算属性:computed:{count(){
returnthis
.
早起的鸟儿
·
2024-01-19 00:21
call、apply、bind方法的共同点和区别
varobj={x:81,};varfoo={getX:function(){
returnthis
.x;}}console.log(foo.getX.bind(obj)());//81注意:bind方法的返回值是函数
Spidd
·
2024-01-18 06:28
实现JavaScript的函数链式执行
constexecutorName=name;/***方法数组*/constmethodArray=[];/***同步执行某个方法*/functionrun(func){methodArray.push(func);
returnthis
卡卡舅舅
·
2024-01-17 22:35
前端-React
javascript
前端
开发语言
JS 手写 new 函数
我们今天梳理下创建一个对象对象原型继承绑定函数this返回对象先创建一个构造函数,原型上添加一个方法letFoo=function(name){this.name=name}Foo.prototype.getName=function(){
returnthis
.name
前端小小白zyw
·
2024-01-17 11:06
Javascript
前端技能
浏览器
javascript
原型模式
开发语言
Java中的Object类中的部分方法
publicStringtoString(){
returnthis
.getClass().getName()+"@"+Inter.toHexString(hashCode());}源代码上toString
玖 萬
·
2024-01-17 06:40
java
开发语言
apache
1
请确保以字母开头"$.validator.addMethod("letterfirst",function(value,el){value=value.toLowerCase();varpatt=/^[a-z]/;
returnthis
.optional
风过留香_3356
·
2024-01-17 01:44
Javacript如何实现继承?
使用原型链实现继承javascriptCopyCodefunctionParent(name){this.name=name;}Parent.prototype.getName=function(){
returnthis
.name
是个车迷
·
2024-01-16 12:10
JavaScript
javascript
开发语言
ecmascript
二阶贝塞尔曲线生成弧线
效果实现1.封装方法classArcLine{constructor(from,to,num=100){this.from=from;this.to=to;this.num=num;
returnthis
.getPointList
牛老师讲GIS
·
2024-01-16 10:06
跟牛老师一起学WEBGIS
GIS加油站
弧段
被萨尔曲线
贝塞尔曲线
uniapp自带的选择日期的使用
constcurrentDate=this.getDate({format:true})return{date:currentDate,//默认设置的时间此处可以从后台获取}},computed:{startDate(){
returnthis
.getDate
小前端
·
2024-01-16 07:04
uni-app
计算属性缓存
}varapp=newVue({el:'#app',data:{text:'123,456'},methods:{reversedText:function(){//这里this指向的是当前Vue实例
returnthis
.tex
一叶扁舟丶
·
2024-01-15 22:36
钉钉小程序Promise不支持finally解决方案
//在app.js顶部加入以下代码Promise.prototype.finally=function(callback){letP=this.constructor;
returnthis
.then(value
zhanglong
·
2024-01-15 11:21
Set和Map数据结构
Symbol(1);console.log(symbol1);//Symbol应用私有属性functionPerent(){leta=Symbol();this[a]='王';this.getA=()=>{
returnthis
小尘_3f79
·
2024-01-15 08:33
ElementUI表格中添加表头图标悬浮提示
//表格操作提示tableAction(){
returnthis
.
永不满足的求知者
·
2024-01-14 23:33
Vue
Element
前端
计算属性与方法的区别
计算属性和方法都可以完成同样的操作,其写法及效果很相似,例如://方法methods:{reversedMessage:function(){
returnthis
.message.split('').reverse
七八个星天
·
2024-01-14 06:24
Enums利用类组件实现枚举
this.enumsName=enumsName;this.data={};this.alias=[];//别名}//set(name,value){this.data[name]=value+"";
returnthis
Joey_iSleepy
·
2024-01-14 02:15
javascript
前端
开发语言
16-computed计算属性-模糊查询
{list:['aaa','bbb','ccc','add','eee','fff','ggg'],mytext:''},computed:{mydatalist(){//依赖此状态的函数也会重新执行
returnthis
.list.filter
_参北
·
2024-01-13 19:57
三、vue从入门到进阶:计算属性computed与侦听器watch(三)
example',data:{message:'Hello'},computed:{//计算属性的getterreversedMessage:function(){//this指向vm实例(这个为反转)
returnthis
.message.split
负15厘米的爱
·
2024-01-13 06:24
前端同学经常忽视的一个 JavaScript 面试题
题目functionFoo(){getName=function(){alert(1);};
returnthis
;}Foo.getName=function(){alert(2);};Foo.prototype.getName
寒羽鹿
·
2024-01-12 09:19
MybatisPlus LambdaQueryWrapper模糊查询like方法
1.遇到的问题查询条件拼接,like的使用方法defaultChildrenlike(Rcolumn,Objectval){
returnthis
.like(true,column,val);}2.使用到的方法
何以解忧08403
·
2024-01-11 21:31
java
服务器
前端
面向对象原型
面向对象原型案例varbox=newObject();box.name='lee';box.age=27;box.run=function(){
returnthis
.name+this.age}console.log
令武
·
2024-01-11 20:42
Vue的Computed、Methods和Watch
,computed:{newstr:function(){
returnthis
.str
海伦•
·
2024-01-10 09:14
vue.js
javascript
前端
el-table 个体行绑定点击事件时 表格中有el-radio和el-checkbox 点击触发两次事件处理方法
checkbox的单击事件触发两次解决办法{{''}}//点击行选择的时候获取三个参数找到对应的标签RowTableCollect(val,c,e){if(e.target.tagName=='INPUT')
returnthis
.CollectFactor
Bubluu
·
2024-01-10 07:49
vue.js
javascript
ecmascript
vue computed计算不到数组或者对象的变化
form:{...childQuestionItems:[...{...score:6}]}...computed:{totalScore(){
returnthis
.form.childQuestionItems.reduce
小和尚敲木头
·
2024-01-10 00:59
前端
vue.js
javascript
前端
Javascript创建对象的几种方式对比
__proto__.constructor)*/constobjPerson={name:"小明",sex:"男",age:10,sayHello(){
returnthis
.name;},};console.group
1e5b5fc82d3c
·
2024-01-09 22:40
vue elementUi form表单自定义验证
是否为空来判断~//:show-message绑定验证条件(验证条件在提交时判断两个文件都上传)//error提示信息//computedcomputed:{fileRequired(){//文件验证
returnthis
.submitFlag
爱前端不爱恋爱
·
2024-01-07 20:10
vue
vue.js
elementui
前端
【攻防世界】mobile easyjni writeup
的代码:publicclassMainActivityextendsc{static{System.loadLibrary("native");}privatebooleana(Strings){try{
returnthis
.ncheck
Melody0x0
·
2024-01-07 20:25
android
vue中使用swiper插件
computed:{swiper(){
returnthis
.
2小乌龟2
·
2024-01-07 16:50
vue选中状态来改变字体颜色
javascriptcomputed:{hasSelectedItems(){
returnthis
.list.some(item=>item.selected
7.9
·
2024-01-07 06:05
vue.js
javascript
前端
vue实现搜索后列表关键字高亮
,title:'Vue.js开发实践'},{id:2,title:'Vue3基础教程'},{id:3,title:'深入浅出React技术栈'}]}},computed:{highlighted(){
returnthis
.list.map
学如逆水,不进则退
·
2024-01-07 04:40
功能实现
vue.js
前端
javascript
Socket 实现不同计算机之间通讯,发送/接收消息
publicByte[]msgBuffer=newbyte[1048576];privateSocket_clientSocket=null;publicSocketClientSocket{get{
returnthis
阳光_勇
·
2024-01-07 00:22
angular 请求头操作
1、获取请求头downLoadFile(downUrl:string):Observable{
returnthis
.http.get(this.downUrl,{observe:'response'})
点沙微痕
·
2024-01-06 22:01
类与类的继承
:stringconstructor(name:string){this.name=name}run():void{alert(`${this.name}在运动`)}getName():string{
returnthis
.name
Mistic_YK
·
2024-01-03 08:45
使用vuex从入门到应用(二)
先看效果图:效果图上一篇讲到的使用vuex中的变量需要在计算属性中
returnthis
.
剑圣_盖小聂
·
2024-01-02 15:58
vue computed 中操作DOM和给对象添加属性遇到的问题
这两天使用vue做东西遇到一些问题,今天总结记录一下:1.在computed中没法操作dom元素,比如```computed:{w(){
returnthis
.
前端岚枫
·
2024-01-02 08:04
JS中的this、apply、call、bind
eg:varperson={name:'aaa',describe:function(){
returnthis
.name;}};console.log(person.describe())//aaa函数的执行环境为
_咻咻咻咻咻
·
2024-01-02 02:42
装饰器之 get / set 装饰器
前置知识:classb{val=999;getbv(){
returnthis
.val;}setbv(v){this.val=v;}}letins=newb();console.log(ins.bv);/
_Rookie._
·
2023-12-31 13:16
typeScript
typescript
再看promise
终于在今天感觉好像明白点了把自己敲的理解分享给大家promise//"usestrict"严格模式下函数内this为undefined//console.log(this);//functionmyFunction(){//
returnthis
起个名难死
·
2023-12-29 20:03
javascript
前端
声明合并
interfaceMIF{setName(name:string):void}classPERSONimplementsMIF{constructor(publicname:string){}getName(){
returnthis
.name
大Q本Q
·
2023-12-29 11:30
javascript 访问器属性创建的三种方式
varbook1={_year:2000,edition:1};Object.defineProperty(book1,"year",{get:function(){
returnthis
.
Lofan.
·
2023-12-28 17:13
JavaScript
专栏
javascript
访问器属性
JS - Object 的 getter 和 setter
看例子:varo={a:7,getb(){
returnthis
.a+1;},setc(x){this.a=x/2}};console.log(o.a);//7console.log(o.b);//8o.c
恒星的背影
·
2023-12-27 07:48
手写promise
=='pending')
returnthis
.state='fulfilled'nextTick(()=>{this.callba
Repeater、
·
2023-12-26 12:30
前端
北海 - Rust与面向对象(四)
原型法此原型法非原型模式,而是类似JavaScript中的原型扩展,在JS中,能够很轻松地为String类型“原地”扩展方法,如:String.prototype.isDigit=function(){
returnthis
.length
Rust语言中文社区
·
2023-12-26 08:12
rust
开发语言
后端
array计算属性排序
:"",datalist:[]},methods:{handleClick(){this.datalist.push(this.text);}},computed:{processDatalis(){
returnthis
.datalist.sort
知识分享share
·
2023-12-25 06:01
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他