谷歌翻译

发布于 2024-11-04 19:12:46 字数 1310 浏览 0 评论 0原文

function translate(lang) {
   var source = document.getElementById("article").innerHTML;
   var len = source.length;

   // Google Language API accepts 500 characters per request 
   var words = 500;
    document.getElementById("translation").style.display='block';

    document.getElementById("translation").innerHTML = ""; 

   for(i=0; i<=(len/words); i++) {
     google.language.translate (source.substr(i*words, words),
                 "en", lang, function (result) {
        if (!result.error) {
            document.getElementById("translation").innerHTML += result.translation;
        } }); }  

  // Hide the text written in the original language
    document.getElementById("article").style.display = 'none';
    return false;
}

一般情况下,翻译一下就可以了。尝试单击几次后,翻译的页面顺序不正确。例如,页面:

<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
<ul>
  <li>list 1</li>
  <li>list 2</li>
  <li>list 3</li>
</ul>

输出:

<p>Paragraph 3</p>
<ul>
  <li>list 1</li>
  <li>list 2</li>
  <li>list 3</li>
</ul>
<p>Paragraph 1</p>
<p>Paragraph 2</p>

知道为什么吗?

function translate(lang) {
   var source = document.getElementById("article").innerHTML;
   var len = source.length;

   // Google Language API accepts 500 characters per request 
   var words = 500;
    document.getElementById("translation").style.display='block';

    document.getElementById("translation").innerHTML = ""; 

   for(i=0; i<=(len/words); i++) {
     google.language.translate (source.substr(i*words, words),
                 "en", lang, function (result) {
        if (!result.error) {
            document.getElementById("translation").innerHTML += result.translation;
        } }); }  

  // Hide the text written in the original language
    document.getElementById("article").style.display = 'none';
    return false;
}

Normally, the translation alright. After attempting couple of click, the translated page is not in correct order. For example, the page:

<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
<ul>
  <li>list 1</li>
  <li>list 2</li>
  <li>list 3</li>
</ul>

output:

<p>Paragraph 3</p>
<ul>
  <li>list 1</li>
  <li>list 2</li>
  <li>list 3</li>
</ul>
<p>Paragraph 1</p>
<p>Paragraph 2</p>

Any idea why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分开我的手 2024-11-11 19:12:46

您无法保证翻译响应返回给您的顺序。

发出任何其他类型的 AJAX 请求也会遇到同样的问题。

You can't guarantee the order that the translation responses are going to come back to you.

You would have the same problem making any other kind of AJAX request as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文