如何在fiddler中修改json数据。

时间:2017-04-04 09:49:19

标签: javascript extjs telerik fiddler

我遇到了一个问题所以我想改变小提琴手的那一天, 在ajax请求之后我得到了这个json数据。

  constructor(obj, children, items) {
    this.children = children;
    this.elm = obj;
    this.state = 0; // <--- once as a numeric property
  }

  state(val) {  // <--- ... and once as a method
    this.state = val;
    for(var index in controls) {
      if (index !== not) {
        addClass(controls[index].elm, 'disabled');
      } else {
        removeClass(controls[not].elm, 'disabled');
      }
      if (this.state === 0) {
        removeClass(controls[index].elm, 'disabled');
      }
    }
  }

现在在fiddler网址中我想改变它,如下所示。

setState

有什么方法可以点击我的网址

来改变fiddler中的数据

1 个答案:

答案 0 :(得分:2)

是的,有办法。转到Fiddler,右键单击该URL,然后转到Replay - &gt;重新发行和编辑

现在在右侧转到检查员 - &gt; TextView中。您将看到要更改的json数据。执行更改,然后单击“运行至完成”以使用CHANGED数据命中相同的URL。