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 [2022/05/07 11:44] – [评分准则] herbin.xie | interview:developer:vue_developer:start [2025/03/26 16:16] (current) – [提交方法] yan.feng | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Vue Developer Interview ====== | ====== Vue Developer Interview ====== | ||
- | 请用< | + | ==== 时限 ==== |
+ | * 2小时 | ||
- | ^ 时限 | 1小时 | | ||
- | ^ 提交方法 | 只需要把相关的.js和.vue文件用ZIP(不可用RAR或其他格式)压缩后电邮代码至 herbin.xie@gz.questwork.com。不要把脚手架文件如node_modules和第三方插件压缩在内。 | | ||
- | <note warning> | + | ==== 提交方法 ==== |
+ | * 第一题:请将答案写在 .txt 文件内。 | ||
+ | * 第二题:请将相关的 .js 和 .vue 文件放在一个文件夹内,不要包含脚手架文件(如 node_modules)和第三方插件。 | ||
+ | * 提交要求:所有题目答案统一放在一个文件夹内,并用 ZIP 格式压缩(不可用 RAR 或其他格式)。 | ||
+ | |||
+ | |||
+ | |||
+ | ===== 第一题 ===== | ||
+ | |||
+ | 阅读代码并回答以下问题: | ||
+ | |||
+ | - button.update({ active: true, disabled: false })的结果是什么?为什么? | ||
+ | |||
+ | < | ||
+ | |||
+ | |||
+ | class Button { | ||
+ | constructor(opt = {}) { | ||
+ | opt = opt || {} | ||
+ | this.status = { | ||
+ | active: typeof opt.active === ' | ||
+ | disabled: typeof opt.disabled === ' | ||
+ | } | ||
+ | this.rules = opt.rules || [] | ||
+ | } | ||
+ | |||
+ | static init(layout) { | ||
+ | const instance = new this(layout) | ||
+ | return instance.isValid ? instance : null | ||
+ | } | ||
+ | |||
+ | get isValid() { | ||
+ | return !!this | ||
+ | } | ||
+ | |||
+ | getValidation({ data }) { | ||
+ | Object.keys(this.status).forEach((k) => { | ||
+ | const rule = this.rules.find((r) => r.key === k)?.value | ||
+ | this.status[k] = getValidation({ rule, data }) ? data[k] : this.status[k] | ||
+ | }) | ||
+ | return this | ||
+ | } | ||
+ | |||
+ | update(data = {}) { | ||
+ | try { | ||
+ | this.getValidation({ data }) | ||
+ | return this | ||
+ | } catch (err) { | ||
+ | throw err | ||
+ | } | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | function getValidation({ rule, data }) { | ||
+ | if (!rule) { | ||
+ | return false | ||
+ | } | ||
+ | const { key = '', | ||
+ | const [valueAttribute] = Object.keys(value || {}) | ||
+ | const rowValue = data[key] | ||
+ | |||
+ | switch (valueAttribute) { | ||
+ | case ' | ||
+ | const arr = value[' | ||
+ | return arr.reduce((acc, | ||
+ | } | ||
+ | case ' | ||
+ | const arr = value[' | ||
+ | return arr.reduce((acc, | ||
+ | } | ||
+ | case ' | ||
+ | return !rowValue === !!value[' | ||
+ | } | ||
+ | case ' | ||
+ | return rowValue === value[' | ||
+ | } | ||
+ | | ||
+ | default: | ||
+ | return false | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | const button = Button.init({ | ||
+ | active: false, | ||
+ | disabled: true, | ||
+ | rules: [ | ||
+ | { | ||
+ | key: ' | ||
+ | value: { | ||
+ | key: '', | ||
+ | value: { | ||
+ | $and: [ | ||
+ | { | ||
+ | key: ' | ||
+ | value: { | ||
+ | $empty: true | ||
+ | } | ||
+ | }, | ||
+ | { | ||
+ | key: ' | ||
+ | value: { | ||
+ | $eq: false | ||
+ | } | ||
+ | } | ||
+ | ] | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | ] | ||
+ | }) | ||
+ | |||
+ | /** | ||
+ | * 1. button.update({ active: true, disabled: false })会输出?为什么? | ||
+ | */ | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== 第二题 ===== | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | 请用< | ||
+ | |||
+ | |||
+ | ==== 目标 ==== | ||
- | ===== 目标 ===== | ||
* 提供前端端购物车功能 | * 提供前端端购物车功能 | ||
- | ===== 购物车外观 | + | ==== 购物车外观 ==== |
以下只是参考。 | 以下只是参考。 | ||
Line 20: | Line 151: | ||
{{: | {{: | ||
- | ===== 购物车功能 | + | ==== 购物车功能 ==== |
* 自动计算总金额(必须) | * 自动计算总金额(必须) | ||
Line 28: | Line 159: | ||
- | ===== 数据结构 Data Structure | + | ==== 数据结构 Data Structure ==== |
购物车数据为本地数据,不必从网上撷取。 | 购物车数据为本地数据,不必从网上撷取。 | ||
Line 43: | Line 174: | ||
</ | </ | ||
- | ===== 评分准则 | + | ==== 评分准则 ==== |
* SFC组件设计 | * SFC组件设计 | ||
Line 49: | Line 180: | ||
* 外覌 | * 外覌 | ||
- | ===== 加分项 | + | ==== 加分项 ==== |
* 组件化,模块化代码。(e.g List.vue, Button.vue) | * 组件化,模块化代码。(e.g List.vue, Button.vue) | ||
* 使用Vue的API计算商品总价、ES6的新规范新API处理数组等 | * 使用Vue的API计算商品总价、ES6的新规范新API处理数组等 |