1

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

4

1 回答 1

1

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

尝试这个:

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

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

于 2017-09-22T09:53:59.000 回答