当前位置:网站首页>Method of changing object properties
Method of changing object properties
2022-07-06 02:13:00 【MonsterQy】
List of articles
background
When completing form validation , Some data attribute names returned from the backend that need remote search , When validating with the last submitted form , The required attribute names are inconsistent ,Eg: The product information returned by the backend is producet_name,product_id
, But what is needed in the end is one product object , It contains id and name Two attributes .
The situation paves the way
Before formally introducing the solution , The author first introduces it in more detail , The background of the project , In order to better understand the solution . The project USES element-plus, This happens in , utilize el-select Components , Link remote search , Get some data of the database directly , These data are in the format of objects , For reference at this time element-plus Documents , You can know , When el-option Data in object format , Yes el-select Set up value-key attribute , Attribute value corresponding el-options Of key value ( Unique ), such , When clicking on an option , Information about the object format of this option , Save to v-model The value of the binding .
resolvent
For this problem , There are two solutions :
1. stay submit when , Revise the attribute field key name required by the form , This requires the child component to modify the properties of the parent component , Use here provide,inject The form of will be better , Because business logic requires , Sometimes there may be sun -> Father's situation , And then in submit In the corresponding event , Just sort out the respective sections , The following code :
if (data.researchMethod ) {
data.research_method_code = data.researchMethod.research_method_code;
data.research_method_name = data.researchMethod.research_method_name;
}
This is more troublesome , Although the code is very simple , But when the form needs more information to be verified , You need to write many similar code segments mechanically , Besides , Because the final content of the form may have many formats , For different fields , Also rewrite different key names . More trouble , But when the form verification field is relatively few , It is more convenient to use .
2. utilize computed Method , When getting data , Directly modify the key name .
Personally, I think this method is more clever , It is very clever to deal with the problem of inconsistent attribute names , First of all, will el-select Bind to a value ,Eg: v-model=“transferCenter”. Then listen for this attribute , And make use of getter and setter Operate on it , Go straight to the code :
const transferCenter = computed({
get() {
return {
cost_dept_code: form.cost_dept_code,
cost_dept_name: form.cost_dept_name,
cost_center_code: form.cost_center_code,
cost_center_name: form.cost_center_name,
};
},
set(val) {
form.cost_dept_code = val.cost_dept_code;
form.cost_dept_name = val.cost_dept_name;
form.cost_center_code = val.cost_center_code;
form.cost_center_name = val.cost_center_name;
},
});
Here's an additional explanation computed How to use it ,get(){} function : Execute when the current attribute needs to be read , Calculate and return the value of the current property according to the relevant data ,set(val) {} function : Monitor the change of current attribute value , Execute when the attribute value changes , Update relevant attribute data . Here we directly realize the two-way binding of data , And imperceptibly changed the name of the attribute , Ensured form The attribute field of corresponds to the correct attribute value .
边栏推荐
- Multi function event recorder of the 5th National Games of the Blue Bridge Cup
- 02. Go language development environment configuration
- 安装Redis
- Minecraft 1.16.5 生化8 模组 2.0版本 故事书+更多枪械
- PHP campus financial management system for computer graduation design
- [width first search] Ji Suan Ke: Suan tou Jun goes home (BFS with conditions)
- 01. Go language introduction
- 500 lines of code to understand the principle of mecached cache client driver
- [flask] obtain request information, redirect and error handling
- 2022 PMP project management examination agile knowledge points (8)
猜你喜欢
Minecraft 1.18.1、1.18.2模组开发 22.狙击枪(Sniper Rifle)
Computer graduation design PHP college classroom application management system
SPI communication protocol
02.Go语言开发环境配置
Prepare for the autumn face-to-face test questions
NiO related knowledge (II)
Computer graduation design PHP part-time recruitment management system for College Students
SQL statement
Overview of spark RDD
Computer graduation design PHP campus restaurant online ordering system
随机推荐
Audio and video engineer YUV and RGB detailed explanation
leetcode3、实现 strStr()
论文笔记: 极限多标签学习 GalaXC (暂存, 还没学完)
Alibaba canal usage details (pit draining version)_ MySQL and ES data synchronization
Redis守护进程无法停止解决方案
Virtual machine network, networking settings, interconnection with host computer, network configuration
Unity learning notes -- 2D one-way platform production method
Global and Chinese markets of nasal oxygen tubes 2022-2028: Research Report on technology, participants, trends, market size and share
02. Go language development environment configuration
Overview of spark RDD
Tensorflow customize the whole training process
阿里测开面试题
Apicloud openframe realizes the transfer and return of parameters to the previous page - basic improvement
vs code保存时 出现两次格式化
Redis-字符串类型
MySQL lethal serial question 1 -- are you familiar with MySQL transactions?
TrueType字体文件提取关键信息
[flask] obtain request information, redirect and error handling
Sword finger offer 38 Arrangement of strings
02.Go语言开发环境配置