-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (56 loc) · 1.46 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
</head>
<body>
<button onclick="oneClickPrintFun1()">Sample 1</button>
<button onclick="oneClickPrintFun2()">Sample 2</button>
<script>
function oneClickPrintFun1()
{
var json = {
intentFromId: 'PR-AA0100001',
name: 'PR-AA0100001'
};
$.ajax({
url: 'http://127.0.0.1:3000/one_click_print',
type: 'POST',
crossDomain: true,
data: json,
dataType: "json",
success: function (response) {
console.log('success');
console.log(response);
},
error: function (xhr, status) {
console.log(xhr);
console.log(status);
}
});
}
function oneClickPrintFun2()
{
var json = {
intentFromId: 'PR-CC0112345',
name: 'PR-CC0112345'
};
$.ajax({
url: 'http://127.0.0.1:3000/one_click_print',
type: 'POST',
crossDomain: true,
data: json,
dataType: "json",
success: function (response) {
console.log('success');
console.log(response);
},
error: function (xhr, status) {
console.log(xhr);
console.log(status);
}
});
}
</script>
</body>
</html>