forked from zouyuefen/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathput.html
More file actions
executable file
·25 lines (24 loc) · 490 Bytes
/
put.html
File metadata and controls
executable file
·25 lines (24 loc) · 490 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>PUT</title>
<script type="text/javascript" src="apijson.js">
</script>
</head>
<body>
<script >
var json = {
"tag":"Moment",
"Moment":{
"id":15,
"praiseUserIdList-":[ //去除以下userId
82001,
82002
],
"content":"APIJSON is a JSON Transmission Structure Protocol…"
}
};
request(url_put, json);
</script>
</body>
</html>