上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 494 下一页
摘要: var a = { n: 1 }; var b = a; a.x = a = { n: 2 }; console.log(a.x); // undefined console.log(b.x); // {n: 2} Javascript see the following code, mainly 阅读全文
posted @ 2024-12-09 15:17 Zhentiw 阅读(17) 评论(0) 推荐(0)
摘要: ABT SDK Design The entire ABT SDK includes numerous APIs and tools to support application development, including: ABTCore: Provides the core functiona 阅读全文
posted @ 2024-12-07 04:12 Zhentiw 阅读(50) 评论(0) 推荐(0)
摘要: How to Control Requests? Controlling requests involves addressing several key issues: 1. How to Maximize Bandwidth Utilization In chunked uploads, a l 阅读全文
posted @ 2024-12-05 03:20 Zhentiw 阅读(44) 评论(0) 推荐(0)
摘要: Code design SDK has 3 layers: Upload Protocol: Defines the communication format between the frontend and backendt upload-core: Protocol-based API that 阅读全文
posted @ 2024-12-05 03:20 Zhentiw 阅读(18) 评论(0) 推荐(0)
摘要: How to coordinate frontend and backend? File upload involves interaction between the frontend and backend, requiring the establishment of a standard c 阅读全文
posted @ 2024-12-05 03:20 Zhentiw 阅读(41) 评论(0) 推荐(0)
摘要: Background Our SaaS platform includes the upload of large files such as company information and meeting videos. Without special handling, the followin 阅读全文
posted @ 2024-12-05 03:18 Zhentiw 阅读(39) 评论(0) 推荐(0)
摘要: We have a RadioGroupcomponent, when the prop verticalis true, we want all the Radiowrap with div, otherwise wrap with span. <template> <component v-fo 阅读全文
posted @ 2024-12-04 15:14 Zhentiw 阅读(18) 评论(0) 推荐(0)
摘要: Write big number // NOT 100000 // Better 100_000 1e5 Shorthands syntax for floating number // Normal 0.123 // The same .123 // eX also apply to floati 阅读全文
posted @ 2024-12-03 16:59 Zhentiw 阅读(14) 评论(0) 推荐(0)
摘要: <template> <label v-if="label">{{ label }}</label> <select class="field" :value="modelValue" v-bind="{ ...$attrs, onChange: ($event) => { $emit('updat 阅读全文
posted @ 2024-12-03 15:30 Zhentiw 阅读(25) 评论(0) 推荐(0)
摘要: <style> .red {color: red;} .green {color: green;} </style> <div id="app"></div> <script> function h(tag, props, children) { return { tag, props, child 阅读全文
posted @ 2024-12-03 15:08 Zhentiw 阅读(14) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 494 下一页