2
我試圖爲瀏覽器創建擴展程序,並且希望將圖像保存到本地。我希望將圖像保存在json文件中。我很迷茫,如何去做。下面是我的代碼,雖然我確信我離得很遠。謝謝將圖像保存爲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>
您可能想了解[在Javascript中獲取圖像數據?] [1]。 [1]:http://stackoverflow.com/questions/934012/get-image-data-in-javascript – Fostah