-
Notifications
You must be signed in to change notification settings - Fork 144
函数调用
是果宝呐 edited this page Nov 28, 2024
·
1 revision
此方法返回翻译后的JSON
响应体。
async function translate(
text: string,
sourceLang: string,
targetLang: string,
dlSession: string,
tagHandling: boolean,
printResult: boolean
): object;
-
text
string
- 需要翻译的文本。 -
sourceLang
string
- 源语言国家/地区代号。 -
targetLang
string
- 目标语言国家/地区代号。 -
dlSession
string
- 通过调试工具获得的cookie。 -
tagHandling
boolean
- 是否处理HTML标签。 -
printResult
boolean
- 是否在控制台打印返回结果。
- return
Promise<Object>
- 返回翻译数据JSON响应体。
import { translate } from './src/translate.js';
translate('how are you?', 'en', 'zh', '', false, false)
.then(result => {
console.log(result)
});