这个generator的坑怎么出?
co(function* (){
var token = yield sts.assumeRole('role', policy, 15 * 6, 'client-upload');
console.log(token);
}).catch(function(err) {
console.log(err.message);
});
这是阿里云OSS中关于STS的代码,官方文档表现正常。
sts.assumeRole('role', policy, 15 * 6, 'client-upload')
.next().value
.then(function(token) {
console.log(token.data.toString());
})
.catch(function(err) {
console.log(err);
});
我想既然Node v6.9.1 已经原生支持了generator,所以试着这样写,发现错误消息是从then抛出的。 请问大神怎样在不用co模块的情况下使用这个SDK。
4 回复
没看懂为啥要这样写 自豪地采用 CNodeJS ionic
generator 需要不断的 next 的, 不用 co, 你需要造一个 co 去帮你不断 next, 直到 done = true 这个 runner 还可以是 bluebird.coroutine
这个 runner 还可以是它 https://github.com/leizongmin/lei-coroutine
统一回复一下三位大哥,sdk里面有封装过的方法了。文档写的不清楚,看了源码找到了promise方法。