gpt4 book ai didi

javascript - sendgrid 的 typescript 定义

转载 作者:搜寻专家 更新时间:2023-10-30 21:16:03 24 4
gpt4 key购买 nike

我正在尝试编写一个使用 sendgrid 的 typescript 应用程序,但与我从 typings 获得的其他定义不同,typings install sendgrid --ambient 导致我有些头痛:

我可以像这样实例化客户端:

import * as sendgrid from 'sendgrid';
import Email = Sendgrid.Email;
import Instance = Sendgrid.Instance;
...
private client: Instance;
...
this.client = sendgrid(user, key);

然后在代码的后面我尝试发送电子邮件,这就是为什么 ts 首先强制我导入 EMail 接口(interface)。

var email = new Email();
...
this.client.send(email, (err, data) => {
if (err) {
throw err;
}
});

tslint 不会抛出任何错误,但是当我构建并运行程序(或只是我的测试)时,我得到了这个:

Mocha exploded! ReferenceError: Sendgrid is not defined at Object. (/Users/chrismatic/codingprojects/weview/weview-node/build/server/components/mail/clients/sendgrid.js:4:13)

是否有人可以展示一个有效的实现,或者我是否必须编写自己的界面?在此先感谢您的帮助

编辑:

生成的 js 文件看起来像这样:

var sendgrid = require('sendgrid');
var Email = Sendgrid.Email;

如果我将“Sendgrid”取消大写,则错误消失,但我不能在 ts 文件中这样做

最佳答案

这应该让您了解如何使用 SendGrid 的 typescript 定义。

import * as SendGrid from 'sendgrid';

export class SendGridMail extends SendGrid.mail.Mail {}
export class SendGridEmail extends SendGrid.mail.Email {}
export class SendGridContent extends SendGrid.mail.Content {}

export class SendGridService {
private sendGrid;

constructor(private sendgridApiKey: string) {
this.sendGrid = SendGrid(sendgridApiKey);

}

send(mail: SendGridMail): Promise<any> {

let request = this.sendGrid.emptyRequest({
method: 'POST',
path: '/v3/mail/send',
body: mail.toJSON()
});

return this.sendGrid.API(request);
}

}

下面是我如何使用上面的类:

let mail = new SendGridMail(
new SendGridEmail('from@example.com'),
'Sending with SendGrid is Fun',
new SendGridEmail('to@example.com'),
new SendGridContent('text/plain', 'Email sent to to@example.com'));


return this.sendgridService.send(mail);

关于javascript - sendgrid 的 typescript 定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36446199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com