2

我试图为浏览器创建一个扩展,我想在本地保存图像。我希望将图像保存在 json 文件中。我很迷茫怎么做。下面是我的代码,虽然我确信我离得很远。谢谢

<label>Add New Image From Desktop</label>
        <input type="radio" title="Add New Image From Local Machine" name="addMethod" id="radio" />
        </br>
        <input  type="file" id="file-field"/>
        <input type="button" id="upload" value="Submit" />
        </br>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
        <script type="text/javascript" language="JavaScript">
            $(document).ready(function() {
                $("#upload").click(function(data) {
                    //alert(data);
                    $.ajax({
                        type : "POST",
                        url : "settings.json",
                        dataType : 'json',
                        data : {
                            json : JSONArray.stringify(data) /* convert here only */
                        }
                    });
                    window.location.reload();
                });
            });
        </script>
4

2 回答 2

4

JSON 没有真正的二进制数据存储。如果您认为您确实必须这样做,那么您能做的最好的事情就是对您的数据进行 base64 编码。

于 2012-05-03T20:39:14.617 回答
2

您需要将图像转换为 Base64 编码,以便将其存储在 JSON 中。JSON 不能包含二进制数据。

于 2012-05-03T20:38:42.800 回答