1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-09-16 05:11:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

翻译功能,自动识别语言后,自动翻译为另一种

This commit is contained in:
zhneglili
2022-02-09 22:11:05 +08:00
parent 52d973401d
commit ebec2321a7

View File

@@ -50,9 +50,6 @@ var from = 'auto';
var to = 'auto'; var to = 'auto';
var postMsg = async function () { var postMsg = async function () {
console.log('开始翻译')
from = document.getElementById("inputLangSelect").value
to = document.getElementById("outLangSelect").value
var msgq = document.getElementById("inputLang").value var msgq = document.getElementById("inputLang").value
// 翻译api // 翻译api
msgq = encodeURIComponent(msgq) msgq = encodeURIComponent(msgq)
@@ -62,7 +59,6 @@ var postMsg = async function () {
let res1 = await fetch(httpUrl1) let res1 = await fetch(httpUrl1)
let result1 = await res1.json() let result1 = await res1.json()
let res2 = result1.trans_result[0].dst let res2 = result1.trans_result[0].dst
console.log(result1)
document.getElementById("outPutRes").innerHTML = res2 document.getElementById("outPutRes").innerHTML = res2
} }
@@ -97,6 +93,8 @@ document.getElementById("inputLang").onchange = function () {
} }
//直接翻译 //直接翻译
document.getElementById("tranbtn").onclick = function () { document.getElementById("tranbtn").onclick = function () {
from = document.getElementById("inputLangSelect").value
to = document.getElementById("outLangSelect").value
postMsg() postMsg()
} }
//关闭翻译模块 //关闭翻译模块