从 FCK 编辑器检索上传的图像并插入数据库

发布于 2024-11-03 07:53:17 字数 164 浏览 2 评论 0原文

使用FCKEditor控件上传的图片 必须插入数据库。任何人请帮忙 如何使用FCK编辑器上传图像 控制(“图像”按钮)。用户还应该能够 直接从本地计算机上传图像,无需 将其上传到服务器。选择的图像应该是 直接插入数据库。我有书写功能 将图像插入数据库但不知道如何 从FCKEditor控件中获取选择的图像!

The image uploaded using FCKEditor control
has to be inserted into database. Anyone please help
in how to get the image uploaded using FCK Editor
control('image' button). The user should also be able to
directly upload image from their local computer without
uploading it to the server. The image choosen should be
inserted into database directly. I have writtern function
to insert image into database but do not know how to
get the choosen image from FCKEditor control!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉絮湮 2024-11-10 07:53:17

你可以用这个技巧来做到这一点

  • 步骤1:首先将图像保存在文件夹中
  • 步骤2:然后使用XPath在FCKeditor的内容中找到所有图像标签你可以使用htmlAgility来实现
  • 步骤3:从中找到图像路径并从文件夹中选择图像转换为字节并保存到数据库并从文件夹中删除该图像
  • 第 4 步:从 Httphandlors 路径中替换图像 src 的值(用于显示图像)

You can do that with this trick

  • Step 1 : first save Image in folder
  • Step 2 : then find all image tag in FCKeditor's content with XPath you can use htmlAgility for that
  • Step 3 : find image path from it and pick Image from folder convert into bytes and save to DB and delete that Image from folder
  • Step 4 : replace Image src's value from your Httphandlors path (for showing image)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文