从在线链接打开Word文档并保存
我创建了 .net core Web 应用程序,许多文件都上传到该应用程序 我的问题是如何让用户单击word文档并选择在word中编辑 然后在word中打开此文件并进行所需的更新,然后保存后 将这些更改反映到在线文档中。
我发现了类似的付费工具 syncfusion 可以做到这一点,但我想知道是否有任何不使用第三方的解决方案
I created .net core web application and many files are uploaded to this application
My question is how I can allow users to click on the word document and choose edit in word
then open this file in word and do the required updating then after saving it
reflect these changes to the online document.
I found paid tools like
syncfusion do this but i was wondering if there is any solution without using 3rd party
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Microsoft Graph 将文件上传到 OneDrive,并让用户在那里编辑/保存它们。然后,您可以再次使用 Microsoft Graph API 获取更新的文档。
可以帮助您的链接:
MS Graph OneDrive 概述:
https://learn.microsoft.com/en-us/graph/ onedrive-concept-overview
MS Graph OneDrive API:
https://learn.microsoft。 com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0
You could use Microsoft Graph to upload to files to OneDrive, and let users edit/save them there. You can then get the updated document by using the Microsoft Graph API again.
Links that can help you along:
MS Graph OneDrive overview:
https://learn.microsoft.com/en-us/graph/onedrive-concept-overview
MS Graph OneDrive API:
https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0