就像下方上传的图片中圈的字要改成英文的,这个要怎么处理啊?

安妮的小熊
- 发布:2019-07-31 16:43
- 更新:2021-03-19 17:33
- 阅读:3423

他们 在文档说过了 ,这个要自己写:
plus.nativeUI.actionSheet({
cancel: this.i18n.action_cancel,
buttons: [{
title: this.i18n.actionBtn1//相机国际化文字
},
{
title: this.i18n.actionBtn2//相册国际化文字
}
]
},
async (tap) => {
if (tap.index === 1) {
let RearCamera = plus.camera.getCamera( 1 );
RearCamera.captureImage((file)=>{
this.fileList = this.imgs = [file]
},(err)=>{
console.log(err)
},{"optimize":false})
} else if (tap.index === 2) {
plus.gallery.pick((res)=>{
this.fileList = this.imgs = res.files
},(err)=>{
console.log(err)
},{
maximum:3,
multiple:true
});
}
})

5***@qq.com - 怜秋
楼主解决现有的这个问题了么??
-
-
-
-
-
-
-
-
-
回复 5***@qq.com: 厉害了,我还不知道要怎么获取相册列表,不过拍摄页面也有中文,然后上传uni.uploadFile,会弹出 正在处理中... 这个你解决了么
2020-04-16 10:10
安妮的小熊 (作者)
额。。。好吧
2019-08-01 11:30
h***@sina.com
或者能给个app能用的插件demo吗? 简单的就行. 我自己完善
2020-01-16 21:43
h***@sina.com
再或者能不能告知系统的文字包在哪里? 我全局搜索unicode搜索base64搜索都没找到.
2020-01-16 21:51
h***@sina.com
看了下源码, 不知道哪部分是android和ios的, @dcloudio 下的和其他几个目录能找到chooseImage都改了文言, 但是还是没效果, 需要生成吗? 或者其他什么操作才能将修改后的代码打进生成的项目里?
2020-01-16 22:47
CLP
你说的源码是什么源码,有地址吗?我去看看
2020-01-17 14:04