Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
interview:developer:vue_developer:start [2025/02/11 12:00] – perry.zeng | interview:developer:vue_developer:start [2025/03/26 16:16] (current) – [提交方法] yan.feng | ||
---|---|---|---|
Line 7: | Line 7: | ||
==== 提交方法 ==== | ==== 提交方法 ==== | ||
- | * 第一题请将答案写在txt文件内提交。 | + | * 第一题:请将答案写在 |
- | * 第二题只需要把相关的.js和.vue文件用ZIP压缩(不可用RAR或其他格式),不要把脚手架文件如node_modules和第三方插件压缩在内。 | + | * 第二题:请将相关的 .js 和 .vue 文件放在一个文件夹内,不要包含脚手架文件(如 node_modules)和第三方插件。 |
- | * 压缩后电邮代码至 hr@gz.questwork.com。 | + | |
- | <note warning> | ||
===== 第一题 ===== | ===== 第一题 ===== | ||
Line 17: | Line 17: | ||
阅读代码并回答以下问题: | 阅读代码并回答以下问题: | ||
- | - button.update({ active: true, disabled: false })会输出?为什么? | + | - button.update({ active: true, disabled: false })的结果是什么?为什么? |
< | < | ||
Line 26: | Line 26: | ||
opt = opt || {} | opt = opt || {} | ||
this.status = { | this.status = { | ||
- | active: typeof opt.active === ' | + | active: typeof opt.active === ' |
disabled: typeof opt.disabled === ' | disabled: typeof opt.disabled === ' | ||
} | } | ||
Line 41: | Line 41: | ||
} | } | ||
- | getValidation(data) { | + | getValidation({ data }) { |
Object.keys(this.status).forEach((k) => { | Object.keys(this.status).forEach((k) => { | ||
const rule = this.rules.find((r) => r.key === k)?.value | const rule = this.rules.find((r) => r.key === k)?.value | ||
Line 62: | Line 62: | ||
function getValidation({ rule, data }) { | function getValidation({ rule, data }) { | ||
if (!rule) { | if (!rule) { | ||
- | return | + | return |
} | } | ||
const { key = '', | const { key = '', | ||
Line 83: | Line 83: | ||
return rowValue === value[' | return rowValue === value[' | ||
} | } | ||
- | | + | |
- | return rowValue > value[' | + | |
- | } | + | |
- | case ' | + | |
- | return rowValue >= value[' | + | |
- | } | + | |
- | case ' | + | |
- | if (Array.isArray(rowValue)) { | + | |
- | return !!rowValue.find((e) => (value[' | + | |
- | } | + | |
- | if (typeof rowValue !== ' | + | |
- | return !!value[' | + | |
- | } | + | |
- | return false | + | |
- | } | + | |
- | case ' | + | |
- | return rowValue < value[' | + | |
- | } | + | |
- | case ' | + | |
- | return rowValue <= value[' | + | |
- | } | + | |
- | case ' | + | |
- | return rowValue !== value[' | + | |
- | } | + | |
- | case ' | + | |
- | if (Array.isArray(rowValue)) { | + | |
- | return !rowValue.find((e) => (value[' | + | |
- | } | + | |
- | if (typeof rowValue !== ' | + | |
- | return !value[' | + | |
- | } | + | |
- | return false | + | |
- | } | + | |
default: | default: | ||
return false | return false | ||
Line 152: | Line 120: | ||
/** | /** | ||
- | * 1. button.update({ active: true, disabled: false })會輸出?為什麼? | + | * 1. button.update({ active: true, disabled: false })会输出?为什么? |
*/ | */ | ||