从 Google Translate API 获取中文罗马拼音

Get Chinese Romanization from Google Translate API(从 Google Translate API 获取中文罗马拼音)
本文介绍了从 Google Translate API 获取中文罗马拼音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Google 语言翻译 A​​PI 可以干净利落地翻译成中文:

The Google language translate API works cleanly to translate into Chinese:

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script>
  google.load('language','1');
  function googletrans(text) {
    google.language.translate(text,'en','zh',function(result) {
      alert(result.translation);
    });
  }
</script>
<input onchange="googletrans(this.value);">
Example input: "Hello"
Result: "你好"

我的问题是我无法获得罗马拼音(使用英文字母的发音).这是一个已知问题.

My problem is I can't get the Romanization (pronunciation using English letters). This is a known issue.

现在数据就在 translate.google.com 上(示例输入:Hello" 结果:Nǐ hǎo"),我什至可以通过将浏览器指向:

Now the data is right there on translate.google.com (Example input: "Hello" Result: "Nǐ hǎo") and I can even see it by pointing my browser to:

http://translate.google.com/translate_a/t?client=t&text=hello&hl=en&sl=en&tl=zh-CN&otf=2&pc=0
Result:
{"sentences":[{"trans":"你好","orig":"hello","translit":"Nǐ hǎo"}],
 "dict":[{"pos":"interjection","terms":["喂"]}],"src":"en"}

但不知何故,当我尝试使用 ajax 获取此 URL 时,它失败了(XMLHttpRequest 异常 101).有没有办法用 ajax 检索这个罗马化数据?

But somehow when I try to get this URL with ajax it fails (XMLHttpRequest Exception 101). Is there any way to retrieve this Romanization data with ajax?

推荐答案

今天看来不可能,但 Google Translate API 上存在未解决的问题来解决这个问题.如果我们能够围绕这个问题召集足够多的人,也许 Google 会提高其优先级:

It doesn't appear possible today, but there are open issues on the Google Translate API to address this. If we can rally enough people around the issue, perhaps Google will raise its priority:

1) http://code.google.com/p/google-ajax-apis/issues/detail?id=478&q=label%3AAPIType-Language&sort=-stars&colspec=ID%20Type%20Stars%20Status%20Modified%20Summary%20APIType%20Opened

2) http://code.google.com/p/google-ajax-apis/issues/detail?id=381&q=label%3AAPIType-Language&sort=-stars&colspec=ID%20Type%20Stars%20Status%20Modified%20Summary%20APIType%20Opened

这篇关于从 Google Translate API 获取中文罗马拼音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Laravel 5.3 with Vuejs ajax call尝试使用 Vuejs 从数据库中获取一些数据。我的用户表中有一些虚拟数据。我想在我的视野中展示它们。问题是虽然页面加载,但...
Passing Data between react components(在Reaction组件之间传递数据)
How can I get the nearest date through moment.js?(怎样才能通过Moment.js获得最近的日期呢?)
Difference between two time using dayjs(使用DAYJS的两次时间之间的差异)
Tempus Dominus Bootstrap4 requires moment.js. (datetime picker)(Tempus Domus Bootstrap4需要minom.js。(日期时间选取器))
React/Momentjs date formatting with line break(带换行符的Reaction/Momentjs日期格式)