页面上做成普通的file文件上传,后台怎么处理才能拿到文件里的数据(实体类已经写好了)
$.ajaxFileUpload({
url:"${base}/yun/configure/yungateway/importJson",
type:'POST',
secureuri : false,
fileElementId : 'jsonFile',
dataType : 'JSON',
success : function (data, status){
@At
@Ok("json")
@AdaptBy(type = JsonAdaptor.class)
public Object importJson(@Param("importJson")File file){
这里直接报错
}