谷歌翻译支持 CORS 吗?
是否可以使用
- Javascript
- POST
- 跨源资源共享 (CORS)
访问 google-translate (API v2)使用 GET 很容易做到这一点,但 URL 限制为 2k 个字符(更像是 2072)。
要翻译的字符串使用encodeURIComponent 进行编码。这意味着字符串的实际长度小于 360 个字符(希腊语)。看来我可以使用 POST 从 360 ch 变为 5.000 ch,这是一个很大的进步。
我知道我可以调用我的服务器并让它调用 google-translate,但如果 CORS 解决方案可行的话,这似乎有点矫枉过正。
Is it possible to access google-translate (API v2) using
- Javascript
- POST
- Cross-Origin Resource Sharing (CORS)
It is quite easy to do it with GET, but the URL is limited to 2k characters (more like 2072).
The string to be translated is encoded with encodeURIComponent. That means the actual length of the string is less than 360 characters (greek). It seems that I can go from 360 ch to 5.000 ch using POST that is quite an improvement.
I know that I can call my server and have it call google-translate but it seems to be overkill if a CORS solution is feasible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你可以。 文档指出:
由于该 API 还支持回调参数,你可以创建一个JSONP请求,这意味着你可以跨域获取它。
你不能用 jQuery 的
ajax
方法发出请求吗使用dataType: "jsonp"
和type: "POST"
进行请求?请注意,我还没有测试过这个。
I think you can. The documentation states that:
Since that API also supports a callback parameter, you can create a JSONP request, which means you can get it cross-domain.
Can't you make a request with jQuery’s
ajax
method make a request withdataType: "jsonp"
andtype: "POST"
?Mind you, I haven’t tested this.