Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较
今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!
在本文中,我们将比较 documenso 和 aws s3 图像上传示例之间将文件上传到 aws s3 所涉及的步骤。
我们从 vercel 提供的简单示例开始。

示例/aws-s3-image-upload
vercel 提供了一个将文件上传到 aws s3 的良好示例。
此示例的自述文件提供了两个选项,您可以使用现有的 s3 存储桶或创建新存储桶。了解这一点有帮助
您正确配置了上传功能。
又到了我们看源码的时间了。我们正在寻找 type=file 的输入元素。在 app/page.tsx 中,您将找到以下代码:
return (
<main>
<h1>upload a file to s3</h1>
<form onsubmit={handlesubmit}>
<input
id="file"
type="file"
onchange={(e) => {
const files = e.target.files
if (files) {
setfile(files[0])
}
}}
accept="image/png, image/jpeg"
/>
<button type="submit" disabled={uploading}>
upload
</button>
</form>
</main>
)
}
onchange
onchange 使用 setfile 更新状态,但不执行上传。当您提交此表单时就会进行上传。
onchange={(e) => {
const files = e.target.files
if (files) {
setfile(files[0])
}
}}
处理提交
handlesubmit 函数中发生了很多事情。我们需要分析这个handlesubmit函数中的操作列表。我已在此代码片段中编写了注释来解释这些步骤。
const handlesubmit = async (e: react.formevent<htmlformelement>) => {
e.preventdefault()
if (!file) {
alert('please select a file to upload.')
return
}
setuploading(true)
const response = await fetch(
process.env.next_public_base_url + '/api/upload',
{
method: 'post',
headers: {
'content-type': 'application/json',
},
body: json.stringify({ filename: file.name, contenttype: file.type }),
}
)
if (response.ok) {
const { url, fields } = await response.json()
const formdata = new formdata()
object.entries(fields).foreach(([key, value]) => {
formdata.append(key, value as string)
})
formdata.append('file', file)
const uploadresponse = await fetch(url, {
method: 'post',
body: formdata,
})
if (uploadresponse.ok) {
alert('upload successful!')
} else {
console.error('s3 upload error:', uploadresponse)
alert('upload failed.')
}
} else {
alert('failed to get pre-signed url.')
}
setuploading(false)
}
api/上传
api/upload/route.ts 有以下代码:
import { createpresignedpost } from '@aws-sdk/s3-presigned-post'
import { s3client } from '@aws-sdk/client-s3'
import { v4 as uuidv4 } from 'uuid'
export async function post(request: request) {
const { filename, contenttype } = await request.json()
try {
const client = new s3client({ region: process.env.aws_region })
const { url, fields } = await createpresignedpost(client, {
bucket: process.env.aws_bucket_name,
key: uuidv4(),
conditions: [
['content-length-range', 0, 10485760], // up to 10 mb
['starts-with', '$content-type', contenttype],
],
fields: {
acl: 'public-read',
'content-type': contenttype,
},
expires: 600, // seconds before the presigned post expires. 3600 by default.
})
return response.json({ url, fields })
} catch (error) {
return response.json({ error: error.message })
}
}
handlesubmit 中的第一个请求是 /api/upload 并发送内容类型和文件名作为负载。解析如下:
const { filename, contenttype } = await request.json()
下一步是创建一个 s3 客户端,然后创建一个返回 url 和字段的预签名帖子。您将使用此网址上传您的文件。
有了这些知识,我们来分析一下documenso中的上传工作原理并进行一些比较。
在 documenso 中上传 pdf 文件
让我们从 type=file 的输入元素开始。 documenso 中的代码组织方式不同。您会在名为 document-dropzone.tsx.
的文件中找到输入元素
<input {...getinputprops()} />
<p classname="text-foreground mt-8 font-medium">{_(heading[type])}</p>
这里getinputprops返回的是usedropzone。 documenso 使用react-dropzone。
import { usedropzone } from 'react-dropzone';
ondrop 调用 props.ondrop,你会在 upload-document.tsx 中找到一个名为 onfiledrop 的属性值。
<documentdropzone
classname="h-[min(400px,50vh)]"
disabled={remaining.documents === 0 || !session?.user.emailverified}
disabledmessage={disabledmessage}
ondrop={onfiledrop}
ondroprejected={onfiledroprejected}
/>
让我们看看 onfiledrop 函数会发生什么。
const onfiledrop = async (file: file) => {
try {
setisloading(true);
const { type, data } = await putpdffile(file);
const { id: documentdataid } = await createdocumentdata({
type,
data,
});
const { id } = await createdocument({
title: file.name,
documentdataid,
teamid: team?.id,
});
void refreshlimits();
toast({
title: _(msg`document uploaded`),
description: _(msg`your document has been uploaded successfully.`),
duration: 5000,
});
analytics.capture('app: document uploaded', {
userid: session?.user.id,
documentid: id,
timestamp: new date().toisostring(),
});
router.push(`${formatdocumentspath(team?.url)}/${id}/edit`);
} catch (err) {
const error = apperror.parseerror(err);
console.error(err);
if (error.code === 'invalid_document_file') {
toast({
title: _(msg`invalid file`),
description: _(msg`you cannot upload encrypted pdfs`),
variant: 'destructive',
});
} else if (err instanceof trpcclienterror) {
toast({
title: _(msg`error`),
description: err.message,
variant: 'destructive',
});
} else {
toast({
title: _(msg`error`),
description: _(msg`an error occurred while uploading your document.`),
variant: 'destructive',
});
}
} finally {
setisloading(false);
}
};
发生了很多事情,但为了我们的分析,我们只考虑名为 putfile 的函数。
putpdf文件
putpdffile 定义在 upload/put-file.ts
/**
* uploads a document file to the appropriate storage location and creates
* a document data record.
*/
export const putpdffile = async (file: file) => {
const isencrypteddocumentsallowed = await getflag('app_allow_encrypted_documents').catch(
() => false,
);
const pdf = await pdfdocument.load(await file.arraybuffer()).catch((e) => {
console.error(`pdf upload parse error: ${e.message}`);
throw new apperror('invalid_document_file');
});
if (!isencrypteddocumentsallowed && pdf.isencrypted) {
throw new apperror('invalid_document_file');
}
if (!file.name.endswith('.pdf')) {
file.name = `${file.name}.pdf`;
}
removeoptionalcontentgroups(pdf);
const bytes = await pdf.save();
const { type, data } = await putfile(new file([bytes], file.name, { type: 'application/pdf' }));
return await createdocumentdata({ type, data });
};
放置文件
这会调用 putfile 函数。
/**
* uploads a file to the appropriate storage location.
*/
export const putfile = async (file: file) => {
const next_public_upload_transport = env('next_public_upload_transport');
return await match(next_public_upload_transport)
.with('s3', async () => putfileins3(file))
.otherwise(async () => putfileindatabase(file));
};
putfileins3
const putfileins3 = async (file: file) => {
const { getpresignposturl } = await import('./server-actions');
const { url, key } = await getpresignposturl(file.name, file.type);
const body = await file.arraybuffer();
const reponse = await fetch(url, {
method: 'put',
headers: {
'content-type': 'application/octet-stream',
},
body,
});
if (!reponse.ok) {
throw new error(
`failed to upload file "${file.name}", failed with status code ${reponse.status}`,
);
}
return {
type: documentdatatype.s3_path,
data: key,
};
};
getpresignposturl
export const getPresignPostUrl = async (fileName: string, contentType: string) => {
const client = getS3Client();
const { getSignedUrl } = await import('@aws-sdk/s3-request-presigner');
let token: JWT | null = null;
try {
const baseUrl = APP_BASE_URL() ?? 'http://localhost:3000';
token = await getToken({
req: new NextRequest(baseUrl, {
headers: headers(),
}),
});
} catch (err) {
// Non server-component environment
}
// Get the basename and extension for the file
const { name, ext } = path.parse(fileName);
let key = `${alphaid(12)}/${slugify(name)}${ext}`;
if (token) {
key = `${token.id}/${key}`;
}
const putObjectCommand = new PutObjectCommand({
Bucket: process.env.NEXT_PRIVATE_UPLOAD_BUCKET,
Key: key,
ContentType: contentType,
});
const url = await getSignedUrl(client, putObjectCommand, {
expiresIn: ONE_HOUR / ONE_SECOND,
});
return { key, url };
};
比较
您在 documenso 中没有看到任何 post 请求。它使用名为 getsignedurl 的函数来获取 url,而
vercel 示例向 api/upload 路由发出 post 请求。在 vercel 示例中可以轻松找到输入元素,因为这只是一个示例,但可以找到 documenso
使用react-dropzone并且输入元素根据业务上下文定位。
关于我们:
在 thinkthroo,我们研究大型开源项目并提供架构指南。我们开发了使用 tailwind 构建的可重用组件,您可以在您的项目中使用它们。
我们提供 next.js、react 和 node 开发服务。
与我们预约会面讨论您的项目。

参考资料:
https://github.com/documenso/documenso/blob/main/packages/lib/universal/upload/put-file.ts#l69
https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/readme.md
https://github.com/vercel/examples/tree/main/solutions/aws-s3-image-upload
https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/app/page.tsx#l58c5-l76c12
https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/app/api/upload/route.ts
https://github.com/documenso/documenso/blob/main/packages/ui/primitives/document-dropzone.tsx#l157
https://react-dropzone.js.org/
https://github.com/documenso/documenso/blob/main/apps/web/src/app/(dashboard)/documents/upload-document.tsx#l61
https://github.com/documenso/documenso/blob/main/packages/lib/universal/upload/put-file.ts#l22
今天关于《Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!
怎样用linux gedit指令进行文本替换
- 上一篇
- 怎样用linux gedit指令进行文本替换
- 下一篇
- 禾丰科技新材料及智能装备制造低碳产业园项目开工
-
- 文章 · 前端 | 9分钟前 |
- JavaScript错误监控实用技巧
- 208浏览 收藏
-
- 文章 · 前端 | 12分钟前 | 性能优化 行内JS defer/async JS嵌入方式 外部JS
- HTML中引入JS的几种方式及注意事项
- 492浏览 收藏
-
- 文章 · 前端 | 13分钟前 |
- CSS美化水平导航菜单教程
- 380浏览 收藏
-
- 文章 · 前端 | 16分钟前 |
- CSS边框颜色动画不生效的解决方法
- 369浏览 收藏
-
- 文章 · 前端 | 22分钟前 |
- D3.js动态提示实现与数据绑定解决
- 311浏览 收藏
-
- 文章 · 前端 | 22分钟前 |
- Node.js缓冲区操作详解
- 167浏览 收藏
-
- 文章 · 前端 | 27分钟前 |
- JavaScript跨浏览器测试方法详解
- 289浏览 收藏
-
- 文章 · 前端 | 34分钟前 | CSS 自定义样式 ::-webkit-scrollbar WebKit浏览器 网页滚动条颜色
- 修改滚动条颜色的实用方法与代码示例
- 331浏览 收藏
-
- 文章 · 前端 | 40分钟前 |
- HTML5WebAudioAPI应用与音频处理教程
- 429浏览 收藏
-
- 文章 · 前端 | 41分钟前 |
- 项目1项目2项目3苹果香蕉橘子
- 151浏览 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 485次学习
-
- ChatExcel酷表
- ChatExcel酷表是由北京大学团队打造的Excel聊天机器人,用自然语言操控表格,简化数据处理,告别繁琐操作,提升工作效率!适用于学生、上班族及政府人员。
- 3203次使用
-
- Any绘本
- 探索Any绘本(anypicturebook.com/zh),一款开源免费的AI绘本创作工具,基于Google Gemini与Flux AI模型,让您轻松创作个性化绘本。适用于家庭、教育、创作等多种场景,零门槛,高自由度,技术透明,本地可控。
- 3416次使用
-
- 可赞AI
- 可赞AI,AI驱动的办公可视化智能工具,助您轻松实现文本与可视化元素高效转化。无论是智能文档生成、多格式文本解析,还是一键生成专业图表、脑图、知识卡片,可赞AI都能让信息处理更清晰高效。覆盖数据汇报、会议纪要、内容营销等全场景,大幅提升办公效率,降低专业门槛,是您提升工作效率的得力助手。
- 3446次使用
-
- 星月写作
- 星月写作是国内首款聚焦中文网络小说创作的AI辅助工具,解决网文作者从构思到变现的全流程痛点。AI扫榜、专属模板、全链路适配,助力新人快速上手,资深作者效率倍增。
- 4554次使用
-
- MagicLight
- MagicLight.ai是全球首款叙事驱动型AI动画视频创作平台,专注于解决从故事想法到完整动画的全流程痛点。它通过自研AI模型,保障角色、风格、场景高度一致性,让零动画经验者也能高效产出专业级叙事内容。广泛适用于独立创作者、动画工作室、教育机构及企业营销,助您轻松实现创意落地与商业化。
- 3824次使用
-
- JavaScript函数定义及示例详解
- 2025-05-11 502浏览
-
- 优化用户界面体验的秘密武器:CSS开发项目经验大揭秘
- 2023-11-03 501浏览
-
- 使用微信小程序实现图片轮播特效
- 2023-11-21 501浏览
-
- 解析sessionStorage的存储能力与限制
- 2024-01-11 501浏览
-
- 探索冒泡活动对于团队合作的推动力
- 2024-01-13 501浏览

