如何使用Google翻译API实时动态翻译?
How to dynamically translate in real time using the Google Translation API?
当用户键入单词时,Google translate 将实时动态翻译另一侧的文本。
在 translate.google.com
试试看
现在我希望在我正在建设的翻译网站上模仿这个功能。我正在使用 React 进行开发。
谢谢。
为此,您可以使用 google translate API
- Google 提供了很好的文档和教程 here
如果要实现异步调用,则需要在输入每个单词后进行ajax request
- React 提供了很棒的文档和教程here
当用户键入单词时,Google translate 将实时动态翻译另一侧的文本。
在 translate.google.com
试试看现在我希望在我正在建设的翻译网站上模仿这个功能。我正在使用 React 进行开发。
谢谢。
为此,您可以使用 google translate API
- Google 提供了很好的文档和教程 here
如果要实现异步调用,则需要在输入每个单词后进行ajax request
- React 提供了很棒的文档和教程here