Skip to content

函数调用

是果宝呐 edited this page Nov 28, 2024 · 1 revision

translate()

此方法返回翻译后的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)
});
Clone this wiki locally