帆软 文件上传 控件 怎么实现上传后,向我的网页post提交图片数据?
var file = this.options.form.getWidgetByName("file").getValue(); 只能拿到数组 {"attach_type":"image","filename":"5.jpg","attach_id":"3a7e5985-4fec-4486-9c71-59be894586c1"}
楼主:
通过下面的方法拿到文件控件的相关参数值,然后你想怎么传就这么传,这个拿到的值就不是数组! filename(file):获取文件名称; filetype(file):获取文件类型; filesize(file):获取文件大小。
文件控件获取文件名、类型和大小-https://help.finereport.com/doc-view-1059.html
解决了吗?我也遇到这个问题