我想使用此查询创建视图,但由于包含子查询,因此无法生成视图,有人可以帮助我吗?请..谢谢
sns.publish(snsParams, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
}).promise().then(() => {
return ses.sendEmail(sesParams, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
}).promise().then(() => window.location = 'https://abc123.com/contact/thanks/'));
请帮助我