这个test很老了,但是它仍然表明jQuery选择(基于类)比querySelectorAll快得多。对于我来说,在Chrome 75上,结果如下。
final List<CodeModel> codes = (json.decode(response.body) as List)
.map((dynamic model) => CodeModel.fromJson(model))
.toList();
问题是discussed and supposedly fixed六年前。但是今天,qSA仍然显得异常缓慢。现实和qSA的表现是如此糟糕吗?还是测试中有错误?