我正在将文件作为输入。在该文件中,我应用了裁剪工具,它给出了坐标x1,x2,y1,y2。我想将这些数据发送到我的Rest服务(JAX-RS)。我是clien side编程的新手。 我的HTML代码是:
$(document).ready(function () {
$('img#blah').imgAreaSelect({
handles: false,
maxWidth: 145,
minWidth: 145,
maxHeight: 190,
minHeight: 190,
onSelectEnd: function (img, selection) {
console.log('here '+selection.x1);
console.log('here '+img.valueOf());
}
});
});
</script>
<form action="rest/file/upload" method="post" enctype="multipart/form-data">
<input type='file' onchange="readURL(this);" name="uploadedFile"/>
<div style="height: 250px"><img id="blah" src="#" alt="your image" style="max-width: 100%;max-height: 100%"/></div>
<input type="submit" value="Upload It" />
</form>
我想用带有图像的参数,即x1,x2,y1,y2来调用服务http://localhost:8080/app/test
。我怎么能得到这个?