我想将一个 url 拆分成键/值对,除了有时有独立的键(不携带任何值)。IE 我有一些这种格式的网址:
'first_resources/99/second_resources/41/third_resources/fourth_resources/98'
这里,第一个、第二个和第四个资源都有 id,但第三个资源没有。
我想让这个输出像这样的数组:
[["first_resources",99],["second_resources",41],["third_resources"],["fourth_resources",98]]