考虑以下情况......
import java.util.Calendar
val timestamp = Calendar.getInstance.getTime \\ I have defined the timestamp variable
按照我的要求,我想传递运行时日期时间值。
.exec(http("request_6")
.post("/abcd/projects")
.headers(headers_29)
.formParam("Id", "5")
.formParam("extra", """{"inputproname":"+timestamp+","textareadesc":""")) \\ passing the same timestamp here
Scala脚本已成功执行,但创建的名称为<< +时间戳+>>而不是实际的时间戳值
所以有人能告诉我这里我做错了什么吗?如何传递时间时间戳变量???
非常感谢您的帮助。
谢谢, 普利文
答案 0 :(得分:2)
第一个选项更好......
s"""{"inputproname":"$timestamp","textareadesc":"""
"""{"inputproname":""""+timestamp+"""","textareadesc":"""
"{\"inputproname\":\""+timestamp+"\",\"textareadesc\":"