nowo
nowo
> > ```js > > const submit = async () => { > > const formData= new FormData() > > Array.from(filesList.value).forEach((file)=>{ > > formData.append('file', file) > > }) > >...
@NyllRE I think the separate way may be better. The data sent by these two methods are different. Your method can send object, while mine is more formal and conforms...
Looks great. I can close this then. The problem with `readMultipartFormData` is that it cannot accept data from large files,I read the relevant content, I did not find a solution....
一个非常简单的reactive代码 ```ts /** * vue3 reactive函数的伪代码 * @param obj 数据对象 * @returns 返回一个响应式Proxy对象数据 */ function reactive(obj: T) { return new Proxy(obj, { // 原始对象、属性名和接收者(或叫代理对象) get(target, key, receiver) { // console.log(target,...
You can add `'curly' : [ 'error' , 'multi-line' , 'consistent' ] ,//unified curly braces` to the eslint configuration file,or configure your own rules https://eslint.org/docs/latest/rules/curly