function save_notes(image){
$.ajax({
url:"/save_notes",
data:{
image:image,
text:localStorage.getItem("post_text")||""
},
success:function(){
},
error:function(){
}
})
}
本地测试出现
ERROR WEBrick::HTTPStatus::RequestURITooLarge
ERROR TypeError: can't convert nil into an exact number
感觉应该设定允许上传的文件最大范围,但不知道怎么实现