使用WCAT 6.3,我想设置一个完全像这样的http标题,包括ETag周围的双引号:
If-None-Match: "a52391cbf838cd1:0"
如何在场景文件中转义双引号?这是我的方案文件中不起作用的片段:
request
{
url = "/css/navigation.css";
setheader
{
name = "If-None-Match";
value = ""a52391cbf838cd1:0"";
}
statuscode = 304;
}
答案 0 :(得分:3)
WCAT基于C,场景文件使用一些C语法,包括其转义字符。正确的语法是:
setheader
{
name = "If-None-Match";
value = "\"a52391cbf838cd1:0\"";
}