我在Firefox Quantum(60.0.2)中运行了一些我的webapp测试。
我填写表格并提交。这会向我的APP发送带有Tools / Web Developer / Network Tools
消息正文的POST请求。
当我使用Params
检查请求时,Copy POST Data
标签会显示请求的邮件正文中存在的已解码的值。
在这种情况下,我想要的是将urlencoded内容加载到我的粘贴缓冲区中。
Copy as cURL
为我提供了信息的解码副本--data
给了我一个包含所有标题的curl命令,但static final int[][] moves = {
// Row, column delta
{1, 0},
{-1, 0},
{0, 1},
{0, -1},
};
boolean moves(int[][] mat, int row, int col, int val, int nextVal) {
for (int[] move : moves) {
int newRow = row + move[0];
int newCol = col + move[1];
// On mat?
if (newRow >= 0 && newRow < mat.length && newCol >= 0 && newCol < mat[newRow].length) {
if (nextVal == mat[newRow][newCol]) {
return isPath(mat, val + 1, newRow, newCol);
}
}
}
return false;
}
参数是一个空字符串。获取原始邮件正文的正确方法是什么?
答案 0 :(得分:0)
Copy All As HAR将HTTP Archive加载到粘贴缓冲区中,这是会话“HTTP事务”的JSON表示形式。 entries[].request.postData.text
似乎就是你想要的。
在我的实验中,您还可以获得entries[].request.postData.params[]
,但根据1.2
请注意,text和params字段是互斥的。
那么,祝你好运?