1
有人曾經使用isReliable與谷歌翻譯API嗎?它總是返回「未定義」的值。谷歌翻譯API - isReliable不返回任何東西
google.language.translate('hello','','es',function(result){
alert(result.isReliable); // prints undefined
alert(result.translation); // prints "hola"
});
資源: Google Translate API - Result objects
你有一個isReliable的例子嗎? – andufo 2009-09-07 03:13:31
是的,只需在我在答案中給出的鏈接查看源代碼。在'result'對象填充正確的數據'isReliable'後,將獲得它的值。你可以通過使用FireBug並在'if(!result.error){'設置中斷點來查看。 – 2009-09-07 08:26:09