Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何使用 javascript 将图像转换为 base64 字符串
我需要使用 AJAX 发布图像,但 IE 不支持它。所以我想知道我是否可以使用javascript将图像转换为base64,然后将其发布到php脚本,然后将其解码并将其保存为图像。
这可能吗?
与其使用 JS 在 base64 中进行转换,不如使用表单上的 enctype:
<form action="your_script.php" method="post" enctype="multipart/form-data">