书栈网 · BookStack 本次搜索耗时 0.009 秒,为您找到 116 个相关结果.
  • resWriteRaw

    resWriteRaw 过滤规则 resWriteRaw 将响应的完整内容(包括协议、状态码、状态信息、响应头、内容)写入的指定的文件夹或文件;whistle会根据请求的url和配置自动拼接成路径,且whistle不会覆盖已存在的文件,配置方式: pattern resWriteRaw : //filepath filepath为本地目录或...
  • reqWriteRaw

    reqWriteRaw 过滤规则 reqWriteRaw 将请求的完整内容(包括请求方法、路径、协议、请求头、内容)写入的指定的文件夹或文件;whistle会根据请求的url和配置自动拼接成路径,且whistle不会覆盖已存在的文件,配置方式: pattern reqWriteRaw : //filepath filepath为本地目录或文...
  • accept

    accept accept 为尽可能缩减协议,减少复杂度,该协议已在最新版本的 whistle (>=v1.12.3 ) 中删除,请及时更新whistle ,并用reqHeaders 代替: pattern reqHeaders : //accept=acceptType
  • headerReplace

    headerReplace 过滤规则 headerReplace 通过替换字符的方式修改请求或响应投稿,配置方式: # 通过替换的方式修改请求头 pattern headerReplace : //req.header-name:pattern1=replacement1&pattern2=replacement2 # 通过替换的方式修改...
  • reqCharset

    reqCharset 过滤规则 reqCharset 修改请求头content-type 的charset,配置方式: pattern reqCharset : //charset charset可以为utf8 、gbk 等等字符编码,pattern参见匹配模式 ,更多模式请参考配置方式 例子: www . ifeng . com r...
  • file

    file (xfile) 过滤规则 file (xfile) xfile功能同file一样,xfile和file的唯一区别是file找不到对应文件返回404,而xfile则是继续请求线上资源。 替换本地目录或文件,配置方式: pattern file : //filepath # 也可以匹配一个文件或目录路径列表,whistle会依次查找...
  • statusCode

    statusCode 过滤规则 statusCode 设置响应状态码(状态码范围100~999 ),请求会直接根据设置的状态码返回,不会请求到线上,这个与replaceStatus 不同,后者是请求返回后再修改状态码,可以用于模拟各种状态码,配置方式: pattern statusCode : //code 其中:code >= 100 &...
  • 请求替换

    请求替换 过滤规则 请求替换 把请求替换成请求其它url,配置方式: pattern http : //host:port/xxx pattern https : //host:port/xxx # 自动补充协议(与请求的协议一样) pattern host : port / xxx 其中,pattern参见匹配模式 ,更多...
  • resBody

    resBody 过滤规则 resBody 把指定的内容替换响应内容(304等响应没有内容无法替换),配置方式: pattern resBody : //filepath filepath为Values 里面的{key}或者本地文件(如:e:\test\xxx 、e:/test/xxx 、/User/username/test/xxx 等):...
  • 自定义

    自定义规则 自定义规则 whistle提供了插件的方式扩展协议,具体参考:插件开发