1

我想从以下位置发送我的参数:

* def d = call read ('datas.json')

在我的 js 文件中的方法中:

* header Authorization = call read('basic-auth.js') { username: 'd.usn', password: 'd.pw' } 

(假设在 datas.json 我有usnand pw

而不是写参数' john'和' secret'

* header Authorization = call read('basic-auth.js') { username: 'john', password: 'secret' }

如果我没有在官方回购中找到信息,我很抱歉,但任何答案都会非常有帮助:我需要这个几次并且没有发现问题。

4

1 回答 1

1

你让我担心空手道文档没用:P。你看过嵌入式表达式吗?

Authorization = call read('basic-auth.js') { username: '#(d.usn)', password: '#(d.pw)' } 

顺便说一句,如果datas.json已经是 : { username: 'john', password: 'secret' },你可以这样做:

Authorization = call read('basic-auth.js') read('datas.json')
于 2017-10-03T03:30:14.773 回答