Vue 自定义组件编写 案例实战

  • index.vue 
<template><div><el-button type="primary" @click="showDialog">添加邮递配置</el-button><el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="800px" :before-close="handleCloseDialog"><el-form ref="form" :model="form" :rules="formRules" label-width="120px"><el-form-item label="邮递名称" prop="name"><el-input v-model="form.name" style="width: 200px;"></el-input></el-form-item><el-form-item label="邮递角色" prop="role"><el-select v-model="form.role" placeholder="请选择" class="custom-select"><el-option label="邮政员" value="postal"></el-option><el-option label="管理员" value="admin"></el-option></el-select></el-form-item><el-form-item label="邮政编号ID"><el-input v-model="form.postListId" placeholder="请输入邮政编号ID" style="width: 200px;"></el-input></el-form-item><el-form-item label="邮递周期" prop="cycleItem"><el-select v-model="form.cycleItem" placeholder="邮递周期" class="custom-select"@change="handleCycleChange"><el-option label="周期" value="cycle"></el-option></el-select><el-select v-model="form.period" placeholder="周期选项"><el-option v-for="periodsItem in periods" :key="periodsItem.value" :label="periodsItem.label":value="periodsItem.value"></el-option></el-select></el-form-item><el-form-item><template #label><span ref="customLabelExpression" /></template><PostCondition v-model="conditions" :item-disabled="itemDisabled" :show-item-btn="showItemBtn" /></el-form-item><el-form-item label="实时邮递次数"><div class="input-row"><el-col style="max-width:200px;"><div class="flexible-input-group"><el-input v-model="form.frequencyDay" class="flexible-input"@input="handleFrequencyInput"></el-input><span class="input-unit">天</span></div></el-col><el-col style="max-width:200px;"><div class="flexible-input-group"><el-input v-model="form.frequencyCount" class="flexible-input"@input="handleTimesInput"></el-input><span class="input-unit">次</span></div></el-col></div></el-form-item><el-form-item label="邮递方式" prop="selectedMethods"><el-select v-model="form.selectedMethods" multiple placeholder="请选择" class="custom-select"><el-option label="邮件" value="0"></el-option><el-option label="短信" value="1"></el-option></el-select></el-form-item><el-form-item label="状态" prop="status"><el-select v-model="form.status" placeholder="请选择" class="custom-select"><el-option label="上线" value="1"></el-option><el-option label="下线" value="0"></el-option></el-select></el-form-item><el-form-item label="推送内容" prop="content"><el-input type="textarea" v-model="form.content" :rows="5" maxlength="400" show-word-limitstyle="width: 600px;"></el-input></el-form-item></el-form><span slot="footer" class="dialog-footer"><el-button @click="dialogVisible = false">取消</el-button><el-button type="primary" @click="handleSubmit">确定</el-button></span></el-dialog></div>
</template><script>
import '@/styles/textarea.css'
import PostCondition from './PostCondition.vue'export default {components: {PostCondition,},data() {return {dialogVisible: false,dialogTitle: '添加邮递配置',form: {name: '中国邮政', // 邮递名称role: 'postal',         // 邮递角色period: '',        // 邮递周期单位postListId: '', // 邮政编号IDcycleItem: '',   // 邮递周期选项frequencyDay: '',  // 频率:天frequencyCount: '',      // 频率:次selectedMethods: [], // 邮递方式status: '1',content: '',richTextContent: '',   // 富文本内容expression: ''// 条件表达式},selectConditions: [],       // 邮递条件选项列表,根据周期动态设置bakSelectConditions: [],     // 邮递条件选项列表备份,用于重置periods: [],                    // 邮递周期单位列表disableConditionSelect: false,  // 控制邮递条件选择框是否禁用showPercentageSuffix: false,     // 是否显示百分比输入框后缀formRules: { // 表单验证规则name: [{ required: true, message: '请输入邮递名称', trigger: 'blur' }],role: [{ required: true, message: '请选择邮递角色', trigger: 'change' }],cycleItem: [{ required: true, message: '请选择邮递周期', trigger: 'change' }],period: [{ required: true, message: '请选择邮递周期单位', trigger: 'change' }],method: [{ required: true, message: '请选择邮递方式', trigger: 'change' }],status: [{ required: true, message: '请选择状态', trigger: 'change' }],content: [{ required: true, message: '请输入推送内容', trigger: 'blur' }],selectedMethods: [{ required: true, message: '请选择通知方式', trigger: 'blur' },{validator: (rule, value, callback) => {if (value.length === 0) {callback(new Error('请选择邮递方式'));} else {callback();}},trigger: 'change'}],richTextContent: [{ required: true, message: '请输入内容', trigger: 'blur' }],showPercentageSuffix: false},periodsToValue: {'day': 1,'week': 2,'month': 3},conditions: [{ field: '', operator: '', value: '' }], // 邮递条件itemDisabled: false,showItemBtn: true};},methods: {showDialog() {this.dialogVisible = true;this.$nextTick(() => {this.updateCustomLabel();});},handleCloseDialog(done) {// 清空表单数据this.$refs.form.resetFields();// 关闭对话框done();},handleConditionsData() {const result = this.conditions.map(condition => {let cleanedValue = condition.value.replace(/,/g, '')if (!isNaN(cleanedValue) && cleanedValue.includes('.')) {cleanedValue = (parseFloat(cleanedValue) / 100).toFixed(4)}return `${condition.field}|${condition.operator}|${cleanedValue}`}).join('&')return result},handleSubmit() {// 手动触发一次表单验证this.$refs.form.validate((valid) => {if (valid) {// 表单验证通过,执行提交操作const allValid = this.conditions.every(item => item.field && item.operator && item.value)if (!allValid) {this.$message.error('邮递条件选项还有未填完,请仔细检查一下!')return}// 根据选中的通知方式处理内容并构造数据格式this.form.expression = this.handleConditionsData()this.printVal()alert('提交成功!');} else {alert('表单验证失败!');}});},updateCustomLabel() {const label = '* 邮递条件';const firstChar = label.charAt(0);const restOfLabel = label.slice(1);// 创建一个 span 元素const spanElement = document.createElement('span');// 设置第一个字符的颜色为 #F56C6CspanElement.innerHTML = `<span style="color: #F56C6C">${firstChar}</span>${restOfLabel}`;// 替换 el-form-item 的 label 内容this.$refs.customLabelExpression.innerHTML = '';this.$refs.customLabelExpression.appendChild(spanElement);},handleCycleChange(value) {this.disableConditionSelect = false;// 根据周期设置条件选项列表if (value === 'cycle') {this.periods = [{ label: '天', value: 'day' },{ label: '周', value: 'week' },{ label: '月', value: 'month' },];}},checkFloatNumber(value) {let number = value.replace(/[^\d.]/g, '') // 清除非数字和小数点字符.replace(/\.{2,}/g, '.') // 只保留一个小数点.replace(/^(-)*(\d+)\.(\d{0,2}).*$/, '$1$2.$3'); // 限制小数点后两位return number;},checkIntNumber(value) {let number = value.replace(/[^\d.]/g, '') // 清除非数字和小数点字符.replace(/\.{1,}/g, '') // 保留0个小数点return number;},formatNumber(value) {console.log("去除输入中的非数字字符")// 去除输入中的非数字字符if (!value) return '';let number = value.toString().replace(/\D/g, '');// 格式化为千位分隔符的形式let formatted = new Intl.NumberFormat('en-US').format(number);return formatted;},handleSelectedMethods(listData) {// 将数组转换成逗号分隔的字符串const result = listData.join(',');return result;},handleTouchCount(valueKey) {let value = this.form[valueKey].trim();  // 获取输入框的值if (value === '') {return;  // 检查是否为空}let intValue = parseInt(value, 10);  // 尝试转换为整数if (isNaN(intValue) || !Number.isInteger(intValue) || intValue < 1) {// 如果不是合法的整数,则给出警告并设置为最小匹配值this.$message.warning({message: '已自动将其自动设置为最小匹配值',duration: 1000});this.form[valueKey] = 1;  // 设置为最小匹配值} else {// 更新数据this.form[valueKey] = intValue.toString();}},handleFrequencyInput() {this.handleTouchCount('frequencyDay');},handleTimesInput() {this.handleTouchCount('frequencyCount');},printVal() {console.log("邮递名称:", this.form.name); // 邮递名称console.log("邮递角色:", this.form.role); // 邮递角色console.log("邮政编号ID:", this.form.postListId); // 邮政编号IDconsole.log("邮递周期:", this.periodsToValue[this.form.period]); // 邮递周期console.log("邮递条件表达式:", this.form.expression);// 邮递条件表达式console.log("邮递频率:", this.form.frequencyDay); // 邮递频率console.log("邮递次数:", this.form.frequencyCount); // 邮递次数console.log("邮递方式:", this.handleSelectedMethods(this.form.selectedMethods));// 邮递方式console.log("状态:", this.form.status);// 状态console.log("推送内容:", this.form.content);// 推送内容},},
};
</script><style scoped>
.dialog-footer {text-align: center;
}.input-row {display: flex;align-items: center;
}.flexible-input-group {/* display: flex; *//* align-items: center; */margin-right: 20px;/* 调整输入框组之间的间距 */
}.flexible-input-group .flexible-input {width: 150px !important;margin-right: 10px;
}/* .input-row /deep/ .flexible-input {width: 100px;
} */.input-unit {margin-left: 5px;/* 调整单位文本和输入框之间的间距 */
}.custom-select {width: 200px;margin-right: 10px;
}
</style>

 PostCondition.vue

<template><div><!-- 使用渲染函数自定义 label 的内容 --><div v-for="(condition, index) in conditions" :key="generateKey(index)" class="condition-item"><el-row :class="{ 'error-row': hasError(index) }" class="condition-row" style="margin-top: 2.5px"><div class="condition-content"><el-col><!-- 邮递条件字段选择 --><el-form-item><el-select v-model="condition.field" placeholder="邮递条件" class="custom-select":disabled="itemDisabled"><el-option v-for="(selCondition) in selectConditions" :key="selCondition.label":label="selCondition.label" :value="selCondition.value" /></el-select></el-form-item></el-col><el-col><!-- 运算符选择--><el-form-item style="width:100px"><el-select v-model="condition.operator" placeholder="运算符" class="custom-select":disabled="itemDisabled" style="width:100px"><el-option label=">" value=">" /><el-option v-if="!(condition.field === 'email_delivery_success_rate' || condition.field === 'email_delivery_failed_rate')"label="=" value="=" /><el-option label="<" value="<" /></el-select></el-form-item></el-col><el-col class="input-col"><!-- 值输入 --><el-form-item><el-input v-model="condition.value" class="flexible-input" placeholder="有效值":disabled="itemDisabled" style="min-width:200px" @blur="updateAndUnFormat(index)"@input="checkConditionValueInput(index)" @focus="unFormatNumber(index)"><i v-if="condition.field === 'email_delivery_success_rate' || condition.field === 'email_delivery_failed_rate'"slot="suffix" style="font-style: normal; margin-right: 10px;">%</i></el-input></el-form-item></el-col><el-col class="button-col"><!-- 添加和移除按钮 --><div class="button-container"><el-button v-if="showItemBtn" icon="el-icon-plus" class="custom-button round-icon"type="primary" :disabled="itemDisabled" @click="addCondition(index)" /><el-button v-if="showItemBtn" icon="el-icon-close" class="custom-button round-icon"type="danger" :disabled="itemDisabled" @click="removeCondition(index)" /></div></el-col></div></el-row></div></div>
</template><script>
import { v4 as uuidv4 } from 'uuid'
export default {props: {value: {type: Array,required: true},itemDisabled: {type: Boolean,default: true},showItemBtn: {type: Boolean,default: false}},data() {return {selectConditions: [{ label: '邮件人数', value: 'recipient_user', showPercentageSuffix: false },{ label: '新增邮件人数', value: 'new_recipient_user', showPercentageSuffix: false },{ label: '流水金额,分', value: 'pay_amount', showPercentageSuffix: false },{ label: '邮件次数', value: 'recipient_count', showPercentageSuffix: false },{ label: '传输时长,秒', value: 'transfer_duration', showPercentageSuffix: false },{ label: '滞留时长,秒', value: 'dwell_duration', showPercentageSuffix: false },{ label: '运转次数', value: 'operating_cycles', showPercentageSuffix: false },{ label: '邮件传送成功抵达率', value: 'email_delivery_success_rate', showPercentageSuffix: true },{ label: '邮件传送失败成交率', value: 'email_delivery_failed_rate', showPercentageSuffix: true }],addBool: true}},computed: {conditions: {get() {return this.value},set(newValue) {this.$emit('input', newValue)}}},methods: {hasError(index) {const condition = this.conditions[index]return !condition.field || !condition.operator || !condition.value},updateAndUnFormat(index) {this.processConditionValue(index)const oneCondition = this.conditions[index]if (oneCondition.field !== 'email_delivery_success_rate' && oneCondition.field !== 'email_delivery_failed_rate') {oneCondition.value = this.formatNumber(oneCondition.value)}},checkConditionValueInput(index) {const oneCondition = this.conditions[index]const value = oneCondition.valueif (oneCondition.field === 'email_delivery_success_rate' || oneCondition.field === 'email_delivery_failed_rate') {oneCondition.value = this.checkFloatNumber(value) // 调用 checkIntNumber 处理输入值} else {oneCondition.value = this.checkIntNumber(value) // 调用 checkIntNumber 处理输入值}},checkFloatNumber(value) {const number = value.replace(/[^\d.]/g, '') // 清除非数字和小数点字符.replace(/\.{2,}/g, '.') // 只保留一个小数点.replace(/^(-)*(\d+)\.(\d{0,2}).*$/, '$1$2.$3') // 限制小数点后两位return number},checkIntNumber(value) {const number = value.replace(/[^\d.]/g, '') // 清除非数字和小数点字符.replace(/\.{1,}/g, '') // 保留0个小数点return number},formatNumber(value) {// 去除输入中的非数字字符if (!value) return ''const number = value.toString().replace(/\D/g, '')// 格式化为千位分隔符的形式const formatted = new Intl.NumberFormat('en-US').format(number)return formatted},// 去除千位分隔符并返回数字unFormatNumber(index) {this.$nextTick(() => {const oneCondition = this.conditions[index]if (oneCondition.field !== 'email_delivery_success_rate' && oneCondition.field !== 'email_delivery_failed_rate') {// 去除输入中的非数字字符,包括逗号oneCondition.value = oneCondition.value.toString().replace(/[^\d]/g, '')}})},addCondition() {// 创建一个新的条件对象const newCondition = { field: '', operator: '', value: '' }// 将新条件插入到数组末尾this.conditions.push(newCondition)},removeCondition(index) {// 如果只有一个条件,则仅清空输入框的值,不删除条件对象if (this.conditions.length > 1) {this.conditions.splice(index, 1)} else {this.conditions[index].value = ''}},processConditionValue(index) {const oneCondition = this.conditions[index]const value = oneCondition.valueconsole.log('processConditionValue value:', value)if (!value) {return // 如果数字为空,不继续进行后续操作}if (oneCondition.field === 'email_delivery_success_rate' || oneCondition.field === 'email_delivery_failed_rate') {this.handleFloatNumberInput(value, index)} else {this.handleIntNumberInput(value, index)}},handleIntNumberInput(value, index) {// 去除前导0value = value.toString().replace(/^0+(?!$)/, '')// 纠正输入的整数if (value === '' || isNaN(value)) {this.conditions[index].value = ''} else {this.conditions[index].value = value}},handleFloatNumberInput(value, index) {const number = parseFloat(value).toFixed(2) // 将数字转换为浮点数再转换回字符串,去掉前导零if (number < 0 || number > 100) {this.$message.error({message: '输入的范围应为0-100%',duration: 1000})this.conditions[index].value = undefinedreturn}// 判断价格小数部分是否需要补全const needsCompletion = !/\.\d{2}$/.test(value)this.conditions[index].value = number// 如果需要补全,则提示用户if (needsCompletion) {this.$message.info({message: '数字已自动补全为两位小数。',duration: 1000})}},generateKey(index) {return `${this.conditions[index].field}-${index}`},getUUid(index) {return `${uuidv4()}-${this.selectConditions[index]}`},},
}
</script><style scoped>
.condition-item {/* margin-bottom: 10px; */margin-bottom: 18px;
}.condition-row {display: flex;align-items: center;
}.condition-content {display: flex;width: 100%;
}.custom-select {width: 200px;margin-right: 10px;
}.flexible-input {flex: 1;padding-left: 5px;margin-right: 10px;
}.round-icon {width: 32px;height: 32px;border-radius: 50%;font-size: 16px;line-height: 32px;display: flex;justify-content: center;align-items: center;padding: 0;
}.round-icon.el-button--primary {background-color: #38aa7e;color: #ffffff;
}.round-icon.el-button--danger {background-color: #F56C6C;color: #ffffff;
}.error-row {color: #e45b5b;margin-top: 5px;
}.error-text {margin-top: 5px;color: #e45b5b;;height: 16px;line-height: 16px;
}.button-container {display: flex;
}.input-col {/* 添加输入框和按钮之间的间距 */margin-right: 10px;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/46906.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Leetcode】一、排序

文章目录 1、选择排序2、冒泡排序3、插入排序 1、选择排序 给定数组arr&#xff0c;其长度为n。实现思路&#xff1a; 遍历数组&#xff0c;从0 ~ n - 1&#xff0c;找到最小的&#xff0c;找到后&#xff0c;和数组的第一个元素互换位置继续新一轮遍历&#xff0c;从1 ~ n -…

路网双线合并单线——ArcGIS 解决方法

路网双线合并成单线是一个在地图制作、交通规划以及GIS分析中常见的需求。双线路网定义&#xff1a;具有不同流向、不同平面结构的道路。此外&#xff0c;车道数较多的道路&#xff08;例如&#xff0c;双黄实线车道数大于4的道路&#xff09;也可以视为双线路网&#xff0c;本…

扩容升级丨极海正式推出G32A1465系列汽车通用MCU,驱动智驾再进阶

继2023年推出G32A系列汽车通用平台首发产品G32A1445系列后&#xff0c;极海宣布正式推出G32A1465系列全新汽车通用MCU&#xff0c;以满足日益增长的智能驾驶应用需求。作为升级迭代产品&#xff0c;G32A1465专为应用范围不断扩大的高运算要求而设计&#xff0c;集成丰富的通信接…

数据结构(5.2_3)——二叉树的存储结构

二叉树的顺序存储 #define MAXLEN 255struct TreeNode {ElemType value;//结点中的数据元素bool isEmpty;//结点是否为空 };void main() {TreeNode t[MaxSize]; } 定义一个长度为MaxSize的数组t&#xff0c;按照从上至下、从左至右的顺序依次存储完全二叉树中的各个结点 几个…

前端组件化探索与实践:Vue自定义暂无数据组件的开发与应用

摘要 随着前端开发技术的不断进步&#xff0c;组件化开发已成为提升开发效率、降低维护成本的关键手段。本文旨在通过介绍一款Vue自定义暂无数据组件的开发与实践&#xff0c;深入探讨前端组件化开发的重要性、优势及其在实际项目中的应用。 一、引言 在前端开发中&#xff0…

七天打造一套量化交易系统-Day0-量化投资发展历程

七天打造一套量化交易系统-Day0-量化投资发展历程 1、本间宗久&#xff08;1724-1803&#xff09;2、朱尔斯雷格纳特 Jules Regnault&#xff08;1834—1894&#xff09;3、拉尔夫纳尔逊艾略特&#xff08;1871-1948&#xff09;4、爱德华索普(Edward O. Thorp)&#xff08;193…

windows中使用Jenkins打包,部署vue项目完整操作流程

文章目录 1. 下载和安装2. 使用1. 准备一个 新创建 或者 已有的 Vue项目2. git仓库3. 添加Jenkinsfile文件4. 成功示例 1. 下载和安装 网上有许多安装教程,简单罗列几个 Windows系统下Jenkins安装、配置和使用windows安装jenkins 2. 使用 在Jenkins已经安装的基础上,可以开始下…

Vue.js 集成高德地图:从零开始的实战指南

在现代 Web 开发中&#xff0c;地图服务已经成为许多应用的核心功能之一。高德地图作为国内领先的地图服务提供商&#xff0c;提供了强大的 API 接口&#xff0c;方便开发者在应用中集成地图功能。今天&#xff0c;我们将深入探讨如何在 Vue.js 项目中集成高德地图&#xff0c;…

Element UI DatePicker选择日期范围区间默认显示前一个月和本月

要求&#xff1a;点击el-date-picker选择时间范围时&#xff0c;默认展开当月和上个月。 但是Element UI的组件默认展开的是本月和下一个月&#xff0c;如下图所示&#xff1a; 改为 <span click"changeInitCalendarRange"><el-date-picker v-model"r…

IT产品研发全生命周期【详细说明】

阶段步骤任务负责人产品管理用户故事收集和理解用户需求&#xff0c;创建用户故事产品经理需求分类分类用户故事&#xff0c;组织和优先级排序需求经理可行性分析评估需求的技术可行性与实现难度研发经理需求转换将需求转化为具体的产品特性或功能要求需求经理需求管理创建需求…

设计模式七大原则(五)迪米特法则

迪米特法则 迪米特原则&#xff08;Law of Demeter LoD&#xff09;是指一个对象应该对其他对象保持最少的了解&#xff0c;又叫最少知 道原则&#xff08;Least Knowledge Principle,LKP&#xff09;&#xff0c;尽量降低类与类之间的耦合 强调只和朋友交流&#xff0c;不和陌…

Android 视频亮度图标

attrs.xml <?xml version"1.0" encoding"utf-8"?> <resources><!--图标颜色--><attr name"ijkSolid" format"color|reference" /><!--圆角大小--><attr name"ijkRadius" format"d…

防火墙内容安全综合实验

一、实验拓扑 二、实验要求 1&#xff0c;假设内网用户需要通过外网的web服务器和pop3邮件服务器下载文件和邮件&#xff0c;内网的FTP服务器也需要接受外网用户上传的文件。针对该场景进行防病毒的防护。 2&#xff0c;我们需要针对办公区用户进行上网行为管理&#xff0c;要…

区块链革命:探索Web3如何重塑数字世界

随着区块链技术的不断发展和应用&#xff0c;Web3作为其重要的应用范式&#xff0c;正以其去中心化、安全和可编程性质&#xff0c;深刻影响和重塑着我们的数字世界。本文将深入探讨Web3的核心概念、关键特征以及其在重塑数字世界中的应用和影响&#xff0c;为读者揭示区块链革…

黑马微服务拆分2 (路由 登录 配置)

会利用微服务网关做请求路由 会利用微服务网关做登录身份校验 会利用Nacos实现统一配置管理 会利用Nacos实现配置热更新 今天粗略的完成了黑马笔记里边的代码实现 其实本身黑马商城的源码就写的逻辑有漏洞&#xff0c;加上对业务没有仔细分析 导致出现的bug调试了很久 这…

【入门】基于DE2-115的My First FPGA 工程

1.1. 概述 这是一个简单的练习&#xff0c; 可以帮助初学者开始了解如何使用Intel Quartus 软件进行 FPGA 开发。 在本章节中&#xff0c;您将学习如何编译 Verilog 代码&#xff0c;进行引脚分配&#xff0c;创建时序约束&#xff0c;然后对 FPGA 进行编程&#xff0c;驱动开…

SpringBoot连接PostgreSQL+MybatisPlus入门案例

项目结构 一、Java代码 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://mave…

npm 缓存目录

npm&#xff08;Node Package Manager&#xff09;的缓存目录是npm用于存储已下载包的本地位置&#xff0c;以便在后续安装相同包时能够快速复用&#xff0c;从而节省时间和带宽。npm缓存目录的具体位置会根据操作系统的不同而有所差异。 Windows系统 在Windows系统中&#x…

打造智慧图书馆:AI视频技术助力图书馆安全与秩序管理

一、背景需求 随着信息技术的飞速发展&#xff0c;图书馆作为重要的知识传播场所&#xff0c;其安全管理也面临着新的挑战。为了确保图书馆内书籍的安全、维护读者的阅读环境以及应对突发事件&#xff0c;TSINGSEE青犀旭帆科技基于EasyCVR视频监控汇聚平台技术与AI视频智能分析…

2024可信数据库发展大会:TDengine CEO 陶建辉谈“做难而正确的事情”

在当前数字经济快速发展的背景下&#xff0c;可信数据库技术日益成为各行业信息化建设的关键支撑点。金融、电信、能源和政务等领域对数据处理和管理的需求不断增加&#xff0c;推动了数据库技术的创新与进步。与此同时&#xff0c;人工智能与数据库的深度融合、搜索与分析型数…