2.2.4 • Published 7 months ago

baidu-translate-service v2.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

baidu-translate-service

该库通过封装了百度翻译的API信息,支持浏览器,客户端,nodejs调用百度翻译接口,欢迎大家使用,记得start

parameter

字段名类型是否必填描述备注
qstring请求翻译queryUTF-8编码
tostring翻译目标语言不可设置为auto
appidstringAPPID可在管理控制台查看
keystring秘钥在控制台申请查看
fromstring翻译源语言默认值为auto
ttsinteger是否显示语音合成资源0-显示,1-不显示,默认值为 1
dictinteger是否显示词典资源0-显示,1-不显示 ,默认值为 1
actioninteger判断是否需要使用自定义术语干预API1-是,0-否,默认值为 0

Response

参考官方文档链接

Demo

Browsers

<script src="https://unpkg.com/baidu-translate-service/lib/baiduTranslateService.js"></script>

<script>
  baiduTranslateService({
    appid: "",
    key: "",
    to: "en",
    q: "今天星期几?",
  }).then((result) => {
    console.log(result);
  });
</script>

Nodejs

npm install baidu-translate-service
var baiduTranslateService = require("baidu-translate-service");

baiduTranslateService({
  appid: "",
  key: "",
  to: "en",
  q: "今天星期几?",
}).then((result) => {
  console.log(result);
});
2.2.4

7 months ago

2.2.3

8 months ago

2.2.1

2 years ago

2.2.0

2 years ago

2.2.2

2 years ago

2.1.0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.0

2 years ago