}
},
title: {
type: String,
default: “模块名称”
},
tips: {
type: String,
default: “”
},
isCheck: {
type: Boolean,
default: false
},
isErr: {
type: Boolean,
default: false
},
value: {
type: [String, Number],
default: “”
},
disabled: {
type: Boolean,
default: false
},
popoverText: {
type: String,
default: “”
},
gitInputBlur: {
type: String,
default: “”
},
serviceVal: {
type: [String, Number],
default: “”
},
serviceSwitch: {
// 是否开启服务访问
type: Boolean,
default: false
},
serviceWarning: {
// 提示消息
type: String,
default: “”
},
modify: {
// 修改页面才弹确认框
type: Boolean,
default: false
}
},
watch: {
serviceSwitch: {
handler(val) {
this.needCheck = val;
},
deep: true
}
},
created() {
this.val = this.serviceVal;
this.needCheck = this.serviceSwitch;
},
data() {
return {
error: true, //验证是否通过 默认验证通过
reg: /(^ +| +$)/gi, //校验为空
val: this.value, //输入的数据
is_err: this.isErr,
needCheck: false,
oldInputVal: “”
};
},
methods: {
//获取焦点事件
inputFocus() {
this.is_err = false;
this.oldInputVal = this.val;
},
//失去焦点事件
inputBlur() {
let isCheck = this.isCheck;
let val = “”;
if (this.val && typeof this.val == “string”) {
val = this.val.replace(this.reg, “”);
}
this.val = val;
if (isCheck) {
if (val == “”) {
this.is_err = true;
}
} else {
this.is_err = false;
}
let reg = /1{1,}$/;
if (!reg.test(this.val)) {
this.$message.error({
message: “服务名只支持字母数字中划线~”,
duration: 3000
});
this.is_err = true;
} else {
if (this.needCheck && this.modify) {
this. c o n f i r m ( ‘ confirm(` confirm(‘{this.serviceWarning}`, “提示”, {
confirmButtonText: “确定”,
cancelButtonText: “取消”,
type: “warning”
})
.then(() => {
this.$message({
type: “success”,
小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Web前端开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注:前端)
总结
为了帮助大家更好温习重点知识、更高效的准备面试,特别整理了《前端工程师面试手册》电子稿文件。
内容包括html,css,JavaScript,ES6,计算机网络,浏览器,工程化,模块化,Node.js,框架,数据结构,性能优化,项目等等。
包含了腾讯、字节跳动、小米、阿里、滴滴、美团、58、拼多多、360、新浪、搜狐等一线互联网公司面试被问到的题目,涵盖了初中级前端技术点。
前端面试题汇总
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
JavaScript
性能
linux
c6.png)
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
JavaScript
性能
linux
0-9a-zA-Z- ↩︎