1

I am using this code below to use google transliteration facility in my site, I want to host this service in one intranet site which may not have internet access, how do i use this service ?

   <script type="text/javascript" src="https://www.google.com/jsapi?key=ABQIAAAAIiziw8VGTxhqSejgYtAT8hTwfQc0k8B8CG-VP_1HP5Pa0SmTchSXi4Ra9nGkiQXIcDYFs648bUkc6A">
    </script>
    <script type="text/javascript">

      // Load the Google Transliterate API
      google.load("elements", "1", {
            packages: "transliteration"
          });
4

2 回答 2

1

你的代码:

</script>
<script type="text/javascript">
    // Load the Google Transliterate API
    google.load("elements", "1", {
        packages: "transliteration"
    });

您刚刚为 google-transliteration 编写的代码无法在离线模式下工作,因为javascript API您从 google 服务器请求的代码仅在您Google-transliteration使用互联网与服务器连接时才有效。

我会推荐此链接以供您离线支持,如果您的网站在 windows 网络上使用 Intranet,您可以访问

于 2013-09-02T09:39:02.040 回答
1

您不能,您必须能够连接到 Google 才能使用该服务。它并非全部包含在 javascript 中,并且需要 Google 的服务器才能工作。

于 2013-09-02T07:15:50.910 回答