chat.translateText(options)
Name | Type | Description |
sourceTextList | Array | 待翻译文本数组 |
sourceLanguage | String | 源语言。可以设置为特定语言或 "auto"。"auto" 表示自动识别源语言。 |
targetLanguage | String | 目标语言。支持的目标语言有多种,例如:英语-"en",简体中文-"zh",法语-"fr",德语-"de"等。 |
Promise
// 将阿拉伯文翻译成英文let promise = chat.translateText({sourceTextList: ['مرحبًا'],sourceLanguage: 'auto',targetLanguage: 'en'});promise.then(function(imResponse) {// 翻译成功 translatedTextList 和 sourceTextList 的元素一一对应const { translatedTextList } = imResponse.data;}).catch(function(imError) {// 翻译失败,错误码2117console.warn('translateText error:', imError);});
// 将英文翻译成中文let promise = chat.translateText({sourceTextList: ['Hello Tencent', 'Build in-app chat with Tencent Cloud Chat'],sourceLanguage: 'auto',targetLanguage: 'zh'});promise.then(function(imResponse) {// 翻译成功 translatedTextList 和 sourceTextList 的元素一一对应const { translatedTextList } = imResponse.data;}).catch(function(imError) {// 翻译失败,错误码2117console.warn('translateText error:', imError);});
本页内容是否解决了您的问题?