如何在 responseHeaders 位置获取 id?

How to get id in responseHeaders location?

对于我的 POST 请求,在 responseHeaders 中我得到 1 < location: /users/123 我只想打印 id > 123。 当我在我的功能文件中执行 * print responseHeaders['location'][0] 时,我得到 users/123。我怎么才能得到id?

这不是真正的空手道问题是吧:P

试试这个:

* def location = responseHeaders['location'][0]
* def userId = location.substring(location.lastIndexOf('/') + 1)
* print userId

没错,JavaScript 的所有功能(甚至 Java 通过 Java interop)都可以在空手道中使用!