Home > front end >  Could you tell me how to will response back to the Fiddler in json "female" replace "
Could you tell me how to will response back to the Fiddler in json "female" replace "

Time:03-24

I use the test url is:
https://www.layui.com/demo/table.html

Site response the json data is:
{"code":0,"msg":"","count":1000,"data":[{"id":10000,"username":"user-0","sex":"女","city":"城市-0","sign":"签名-0","experience":255,"logins":24,"wealth":82830700,"classify":"作家","score":57},{"id":10001,"username":"user-1","sex":"男","city":"城市-1","sign":"签名-1","experience":884,"logins":58,"wealth":64928690,"classify":"词人","score":27},{"id":10002,"username":"user-2","sex":"女","city":"城市-2","sign":"签名-2","experience":650,"logins":77,"wealth":6298078,"classify":"酱油","score":31},{"id":10003,"username":"user-3","sex":"女","city":"城市-3","sign":"签名-3","experience":362,"logins":157,"wealth":37117017,"classify":"诗人","score":68},{"id":10004,"username":"user-4","sex":"男","city":"城市-4","sign":"签名-4","experience":807,"logins":51,"wealth":76263262,"classify":"作家","score":6},{"id":10005,"username":"user-5","sex":"女","city":"城市-5","sign":"签名-5","experience":173,"logins":68,"wealth":60344147,"classify":"作家","score":87},{"id":10006,"username":"user-6","sex":"女","city":"城市-6","sign":"签名-6","experience":982,"logins":37,"wealth":57768166,"classify":"作家","score":34},{"id":10007,"username":"user-7","sex":"男","city":"城市-7","sign":"签名-7","experience":727,"logins":150,"wealth":82030578,"classify":"作家","score":28},{"id":10008,"username":"user-8","sex":"男","city":"城市-8","sign":"签名-8","experience":951,"logins":133,"wealth":16503371,"classify":"词人","score":14},{"id":10009,"username":"user-9","sex":"女","city":"城市-9","sign":"签名-9","experience":484,"logins":25,"wealth":86801934,"classify":"词人","score":75}]}

I want to put all servers in the data returned by the "female" replace "male", and then presented to the user in the browser (tried using an AutoResponder function change data success, but only replace death data, inflexible), in the Fiddler custom rules were used in the following code:
 static function OnBeforeResponse (oSession: Session) {
If (oSession. FullUrl. The Contains (" layui.com ")) {
OSession. UtilReplaceInRequest (" female ", "male");
}
}

Present in the data on the browser without any change, also is not to replace, could you tell me how to replace the first json data?

Can please stick the Fiddler caught superior custom rules to modify the data source (not AutoResponder function, because I'm learning the custom rules)? I add posts to the 50 points as a token of his appreciation

CodePudding user response:

Pro, this and javascript not any relationship...

Another Fiddler is not used to local caught debugging use? You use Fiddler changed the server sends data, not only you can see?

CodePudding user response:

The
reference 1/f, bubble fish _ response:
, this and javascript not any relationship...

Another Fiddler is not used to local caught debugging use? You use Fiddler changed the server sends data, not only you can see?

That excuse me this kind of caught class post should send which section is better? I saw the Fiddler using JScript.NET language, I came to here, I'm sorry
  • Related