We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f7d294 commit 55d1a5eCopy full SHA for 55d1a5e
6.9 O que é CORS? - Spring Boot 2.5.0/teste-get-categorias.html
@@ -0,0 +1,22 @@
1
+<html>
2
+<body>
3
+
4
+<button onclick="buscar()">Buscar categorias</button>
5
6
+<script>
7
+function printResponse() {
8
+ console.log(this.responseText);
9
+}
10
11
+function buscar() {
12
+ var req = new XMLHttpRequest();
13
+ req.addEventListener("load", printResponse);
14
+ req.open("GET", "http://localhost:8080/categorias");
15
+ req.setRequestHeader('HEADER1', 'VALOR');
16
17
+ req.send();
18
19
+</script>
20
21
+</body>
22
+</html>
0 commit comments