当前位置:网站首页>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 .
边栏推荐
- selenium 等待方式
- [Clickhouse] Clickhouse based massive data interactive OLAP analysis scenario practice
- 2 power view
- MySQL learning notes - subquery exercise
- Genius storage uses documents, a browser caching tool
- 2022年PMP项目管理考试敏捷知识点(8)
- Xshell 7 Student Edition
- 更改对象属性的方法
- Use image components to slide through photo albums and mobile phone photo album pages
- Blue Bridge Cup embedded_ STM32 learning_ Key_ Explain in detail
猜你喜欢
vs code保存时 出现两次格式化
The intelligent material transmission system of the 6th National Games of the Blue Bridge Cup
0211 embedded C language learning
Online reservation system of sports venues based on PHP
leetcode-两数之和
[depth first search] Ji Suan Ke: Betsy's trip
Card 4G industrial router charging pile intelligent cabinet private network video monitoring 4G to Ethernet to WiFi wired network speed test software and hardware customization
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
Social networking website for college students based on computer graduation design PHP
Blue Bridge Cup embedded_ STM32_ New project file_ Explain in detail
随机推荐
NLP fourth paradigm: overview of prompt [pre train, prompt, predict] [Liu Pengfei]
Shutter doctor: Xcode installation is incomplete
Extracting key information from TrueType font files
【机器人手眼标定】eye in hand
Redis daemon cannot stop the solution
【网络攻防实训习题】
[flask] official tutorial -part2: Blueprint - view, template, static file
Apicloud openframe realizes the transfer and return of parameters to the previous page - basic improvement
Know MySQL database
MySQL lethal serial question 1 -- are you familiar with MySQL transactions?
国家级非遗传承人高清旺《四大美人》皮影数字藏品惊艳亮相!
Numpy array index slice
FTP server, ssh server (super brief)
Install redis
RDD creation method of spark
Using SA token to solve websocket handshake authentication
VIM usage guide
Blue Bridge Cup embedded_ STM32 learning_ Key_ Explain in detail
Folio. Ink is a free, fast and easy-to-use image sharing tool
[depth first search notes] Abstract DFS