📅  最后修改于: 2023-12-03 15:12:12.890000             🧑  作者: Mango
谷歌翻译是一款流行的在线多语言翻译服务,提供了80多种语言的翻译功能。对于程序员,谷歌翻译也是一款非常方便的工具,特别是在开发过程中需要阅读或者翻译英文文档的时候。
要使用谷歌翻译 JavaScript,需要调用 Google Translate API。下面是一个简单的例子,使用 JavaScript 调用 Google Translate API 将一段英文翻译成中文。
const translateUrl = 'https://translation.googleapis.com/language/translate/v2';
const apiKey = 'YOUR_API_KEY_HERE'; // Your Google Cloud API Key
const translateText = (text) => {
const body = {
q: text,
target: 'zh-CN' // translate to Chinese
}
return fetch(`${translateUrl}?key=${apiKey}`, {
method: 'POST',
body: JSON.stringify(body)
})
.then(response => response.json())
.then(data => data.data.translations[0].translatedText)
}
const englishText = 'Google Translate JavaScript';
translateText(englishText).then(chineseText => {
console.log(chineseText); // 输出: 谷歌翻译 JavaScript
})
要使用 Google Translate API,需要先创建一个 Google Cloud Platform 帐户,并为其启用 Translate API。启用 Translate API 后,您需要创建一个 API 密钥,该密钥将用于使用 API。下面是获取 API Key 的步骤:
谷歌翻译 JavaScript 是一种对于程序员非常方便的工具,在开发过程中需要阅读或者翻译英文文档的时候,可以直接使用代码进行翻译。但是使用 API Key 需要付费,程序员需要根据自己的需求决定是否使用该工具。