index.html 600 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="axios.min.js"></script>
  7. </head>
  8. <body>
  9. </body>
  10. <script>
  11. axios.post("http://192.168.7.150:8089/base_api/behave", {
  12. "user_id": "string",
  13. "ts": 0,
  14. "trace_id": "string",
  15. "session_id": "string",
  16. "action_type": "string",
  17. "action_value": "string",
  18. "current_page": "string",
  19. "item_id": "string",
  20. "card_type": "string",
  21. "corp_id": "string"
  22. }).then(res => {
  23. console.log(res.data)
  24. })
  25. </script>
  26. </html>