如果使用 mailchimp API 的 https req 方法成功添加我的联系人,如何呈现 succes.html 文件
最新的 Mailchimp API 文档使用异步函数来批量订阅成员,但我想使用 HTTPS 请求,以便我能够利用状态代码来呈现 success.html 和 failure.html 或者如何我可以如果我要使用 mailchimp API 的异步函数,请访问状态代码
我尝试在异步函数之后使用 if-else 语句(即 if(response.status === 200){console.log(successful)}else{congsole.log(failed)} 但它不起作用,所以我想选择加入 HTTPS 请求
The latest Mailchimp API docs use the async function for batch subscription of members but i want to use the HTTPS req so that i will be able to tap into the status code so as to render the success.html and failure.html alternatively how can i access the status code if i am to use the async function of mailchimp API
I tried using the if-else statement after the async function (i.e if(response.status === 200){console.log(successful)}else{congsole.log(failed)} but its not working so i want to opt in for the HTTPS req
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用以下代码:
Following code can be used :