多情草莓

文章
4
资源
0
加入时间
2年10月21天

‘coroutine‘ object is not iterable

ValueError: [TypeError("'coroutine' object is not iterable"), TypeError('vars() argument must have __dict__ attribute')]在fastapi ,uvloop使用异步函数使用异步的时候 ‘coroutine’ object is not iterable错误原来发现,是同步函数中调用异步代码,请在外面函数中加上async ,await...

Qt 产生随机数

QString MainWindow::generateRandomNumber(){  qsrand(QTime(0,0,0).msecsTo(QTime::currentTime()));  int test = qrand() % 90 + 10;  float value = test / 10.0;  return QString::number(value)...