我有一个测试URL,它返回一个Json Result,如下所示
public static boolean theSame( int[] arr, int start, int end ) {
return start >= end || (
arr[ start ] == arr[ end ] && theSame( arr, start + 1, end )
);
}
我的问题是当我运行此URL时 Chrome浏览器它会返回如上所述的正确回复。但是 Postman 会返回错误以下消息
此网站需要使用Javascript,请在您的浏览器中启用Javascript或使用支持Javascript的浏览器
PS:在localhost中,[http://localhost/test/get_user.php]在浏览器和PostMan中都能正常工作。