如何在 Scala 中传递运行时变量(日期时间)
How to pass runtime variable (datetime) in scala
考虑以下场景...
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 脚本已成功执行,但它创建的名称是 << +timestamp+ >> 而不是实际的时间戳值
谁能告诉我我做错了什么?如何传递时间戳变量???
非常感谢您的帮助。
谢谢,
普拉文
第一个选项读起来更好...
s"""{"inputproname":"$timestamp","textareadesc":"""
"""{"inputproname":""""+timestamp+"""","textareadesc":"""
"{\"inputproname\":\""+timestamp+"\",\"textareadesc\":"
考虑以下场景...
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 脚本已成功执行,但它创建的名称是 << +timestamp+ >> 而不是实际的时间戳值
谁能告诉我我做错了什么?如何传递时间戳变量???
非常感谢您的帮助。
谢谢, 普拉文
第一个选项读起来更好...
s"""{"inputproname":"$timestamp","textareadesc":"""
"""{"inputproname":""""+timestamp+"""","textareadesc":"""
"{\"inputproname\":\""+timestamp+"\",\"textareadesc\":"