Google Translate API - isReliable 不返回任何内容

发布于 2024-08-03 13:45:35 字数 443 浏览 7 评论 0原文

有人曾经将 isReliable 与 Google Translate API 一起使用过吗?它总是返回“未定义”值。

google.language.translate('hello','','es',function(result){
    alert(result.isReliable); // prints undefined
    alert(result.translation); // prints "hola"
});

资源: Google Translate API - 结果对象

Has someone ever used isReliable with the Google Translate API? It always returns "undefined" value.

google.language.translate('hello','','es',function(result){
    alert(result.isReliable); // prints undefined
    alert(result.translation); // prints "hola"
});

Resources:
Google Translate API - Result objects

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

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

发布评论

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

评论(1

蓝天 2024-08-10 13:45:35

isReliable - 一个布尔值,表示是否可靠
检测间隔认为语言代码对于
给定文本。

它仅适用于语言检测(不适用于翻译)。

您可以在此处查看示例。

isReliable - A boolean representing whether or not the
detection interval believes the language code is reliable for the
given text.

It only works for language detection (not for translation).

You can see an example here.

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