0

当设置最大尺寸验证时,我找不到翻译警告框中显示的错误消息的方法。

4

1 回答 1

2

Fine Uploader 中的所有消息和文本都是可覆盖的。请参阅messagesFineUploaderBasic 模式中的选项、FineUploader 模式中的messages选项以覆盖错误和其他相关消息。

要覆盖任何其他文本,请参阅textFineUploaderBasic 模式中的选项和 FineUploader 模式中的text选项

例如,如果您想自定义在提交的项目太大时显示的消息,则需要覆盖选项的sizeError属性,messages您的代码可能如下所示:

var uploader = new qq.FineUploader({
    request: {
        endpoint: 'my/endpoint'  
    },
    validation: {
        sizeLimit: 5000000    
    },
    messages: {
        sizeError: '{file} is far too big!  Your files must be restricted to {sizeLimit} or smaller.'
    }
});

文本将{file}替换为带有文件名的 Fine Uploader,{sizeLimit}文本将替换为您指定的大小限制。如果您对验证或自定义消息有其他疑问,请参阅文档。

于 2013-06-06T15:54:24.690 回答