123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <script src="axios.min.js"></script>
- </head>
- <body>
- </body>
- <script>
- axios.post("http://192.168.7.150:8089/base_api/behave", {
- "user_id": "string",
- "ts": 0,
- "trace_id": "string",
- "session_id": "string",
- "action_type": "string",
- "action_value": "string",
- "current_page": "string",
- "item_id": "string",
- "card_type": "string",
- "corp_id": "string"
- }).then(res => {
- console.log(res.data)
- })
- </script>
- </html>
|