界面编码设置为GBK,后台接收文件 file.getsubmittedFileName() 文件名称乱码。
但是界面设置编码格式为UTF-8,没有出现乱码问题。请问怎么解决啊?
7 回复
是的
var ioc = {
filePool : {
type : "net.wendal.nutz.ext.WebFilePool",
args : ["upload/", 2000]
},
uploadCtx : {
type : "org.nutz.mvc.upload.UploadingContext",
args : [{refer : "filePool"}],
},
upload : {
type : "org.nutz.mvc.upload.UploadAdaptor",
args : [{refer : "uploadCtx"}]
}
};
var ioc = {
filePool : {
type : "net.wendal.nutz.ext.WebFilePool",
args : ["upload/", 2000]
},
uploadCtx : {
type : "org.nutz.mvc.upload.UploadingContext",
args : [{refer : "filePool"}],
fields : {
charset : "GBK" // 加上这段试试
}
},
upload : {
type : "org.nutz.mvc.upload.UploadAdaptor",
singleton : false, // 加上这个确保安全.
args : [{refer : "uploadCtx"}]
}
};
添加回复
请先登陆