Closed LawrenceDon closed 11 months ago
代码位置: https://github.com/pywebio/PyWebIO/blob/65699d978d43b02fdce8a02879553e068a48f04a/webiojs/src/handlers/pin.ts#L77C1-L77C1 修改前: toast.toastElement.innerText = ⏳${t("file_uploading")} ${(loaded / total).toFixed(2)}%;
⏳${t("file_uploading")} ${(loaded / total).toFixed(2)}%
建议修改为: toast.toastElement.innerText = ⏳${t("file_uploading")} ${((loaded / total)*100).toFixed(0)}%;
⏳${t("file_uploading")} ${((loaded / total)*100).toFixed(0)}%
感谢反馈,晚些会更新代码
代码位置: https://github.com/pywebio/PyWebIO/blob/65699d978d43b02fdce8a02879553e068a48f04a/webiojs/src/handlers/pin.ts#L77C1-L77C1 修改前: toast.toastElement.innerText =
⏳${t("file_uploading")} ${(loaded / total).toFixed(2)}%
;建议修改为: toast.toastElement.innerText =
⏳${t("file_uploading")} ${((loaded / total)*100).toFixed(0)}%
;