-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: 支持上传mp3文件 #1787
feat: 支持上传mp3文件 #1787
Conversation
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
b22f39f
to
c03a6f5
Compare
} else if (val === 'video') { | ||
uploadVideoList.value.splice(index, 1) | ||
} else if (val === 'audio') { | ||
uploadAudioList.value.splice(index, 1) | ||
} | ||
} | ||
function mouseenter(row: any) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code for the File Upload component has two issues that need attention:
-
You have added new properties
downloadCount
andimageTotalSize
, which can be removed since these properties should always be returned from methods like 'getFileUploadList()' or an external source. -
The logic is incorrect when adding files to the list (see point 9 above). The maximum number of allowed images should not just be increased but also decreased each time there's a new file added until it hits zero, rather than using conditional statements (
if (...
). Here's one correct approach:
export default {
name: 'FileUpload',
data() {
return {};
I recommend fixing this before further implementation steps, such as refactoring and integrating with your existing application architecture and functionality. Consider revising how files actually come through in this context, especially regarding the maximum count of individual types of files. If you're aiming for a clean interface instead of keeping all lists synchronized, creating additional state might help separate concern levels without complicating things too much.
</div> | ||
<el-checkbox v-model="form_data.audio" /> | ||
</div> | ||
</el-card> | ||
</el-form-item> | ||
</el-form> | ||
<template #footer> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这段是Markdown格式的代码,它的整体结构和内容在不同的环境中可能会有一定的调整,请问您是要我帮忙分析哪一部分?
} | ||
if (form_data[0].video) { | ||
fileUploadFields.push({ label: '视频', value: 'video' }) | ||
} | ||
|
||
set(props.nodeModel.properties.config, 'fields', [...fields, ...fileUploadFields]) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
此代码没有语法错误或潜在问题。不过,如果您希望在代码中使用变量并为属性赋值,请确保您正在使用的变量名与之前设置的props.state.fieldss正确匹配。
示例:
set(formData[0], { image: true });
for (var i = 0; i < formData.length; i++) {
var fieldObject = Object.assign({}, formData[i]);
}
这将使变量fieldObjects
具有正确的数据结构,并且每个对象都包含了属性中的键和值。
如果您的目的不是进行操作,那么这个版本看起来是合理的,无需改进。
但是,在考虑实际项目时,为了防止将来可能发生的逻辑冲突或其他异常情况,最好总是对函数定义明确一些(例如声明输入参数)。这可以大大提高代码可读性:refreshFileUploadConfig() async function(refreshFormFiles);
和 fileUploadFields.push(...formData.map(f => ({label: f.name, value: 'custom_' + f.name})));
注意这里添加了自动生成的变量名称来提高代码的一致性和复用性,同时保持清晰的功能注释以指示功能的作用域。
feat: 支持上传mp3文件