Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收集了一个模型。我需要从集合中删除前 n 个元素。
我知道,如何获取前 n 个元素(.first(n)),但我无法删除它。
你可以使用移位:
while (n-- > 0) { collection.shift(); }
干杯。
您可以在索引 n 之后将集合重置为模型:
collection.reset(collection.slice(n));