Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
agetic
microservicio_tarjetas
Commits
f4dc789c
Commit
f4dc789c
authored
Feb 17, 2020
by
Arturo Hernandez
Browse files
fix test value flow
parent
f1245abd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/www/test.html
View file @
f4dc789c
...
@@ -125,14 +125,21 @@ $(function() {
...
@@ -125,14 +125,21 @@ $(function() {
if
(
data
.
data
){
if
(
data
.
data
){
$
(
"
#mensaje
"
).
text
(
"
Block
"
+
data
.
data
.
block
+
"
:
"
+
(
data
.
data
.
isValue
?
(
"
V=
"
+
data
.
data
.
value
+
"
adr=
"
+
data
.
data
.
value_adr
)
:
data
.
data
.
string
));
$
(
"
#mensaje
"
).
text
(
"
Block
"
+
data
.
data
.
block
+
"
:
"
+
(
data
.
data
.
isValue
?
(
"
V=
"
+
data
.
data
.
value
+
"
adr=
"
+
data
.
data
.
value_adr
)
:
data
.
data
.
string
));
}
else
{
}
else
{
if
(
data
.
message
!=
"
OK
"
)
$
(
"
#mensaje
"
).
removeClass
(
'
alert-success
'
).
addClass
(
'
alert-danger
'
);
$
(
"
#mensaje
"
).
text
(
data
.
message
);
$
(
"
#mensaje
"
).
text
(
data
.
message
);
console
.
log
(
"
trynig mes
"
,
data
.
message
);
if
(
data
.
message
!=
"
OK
"
){
$
(
"
#mensaje
"
).
removeClass
(
'
alert-success
'
).
addClass
(
'
alert-danger
'
);
return
$
.
Deferred
().
reject
({
responseJSON
:{
message
:
data
.
message
}});
}
}
}
}
else
{
}
else
{
let
mess
=
data
.
error
||
data
.
message
||
"
Error al recabar respuesta
"
+
data
.
toString
();
$
(
"
#mensaje
"
).
removeClass
(
'
alert-success
'
).
addClass
(
'
alert-danger
'
);
$
(
"
#mensaje
"
).
removeClass
(
'
alert-success
'
).
addClass
(
'
alert-danger
'
);
$
(
"
#mensaje
"
).
text
(
data
.
error
||
data
.
message
||
"
Error al recabar respuesta
"
+
data
.
toString
());
$
(
"
#mensaje
"
).
text
(
mess
);
console
.
log
(
"
trynig errr
"
);
return
$
.
Deferred
().
reject
({
responseJSON
:{
message
:
mess
}});
}
}
return
$
.
Deferred
().
resolve
(
"
read ok
"
);
}
}
function
check_uiid
(){
function
check_uiid
(){
if
(
$
(
"
#uiid
"
).
text
().
trim
().
length
==
0
){
if
(
$
(
"
#uiid
"
).
text
().
trim
().
length
==
0
){
...
@@ -153,11 +160,11 @@ $(function() {
...
@@ -153,11 +160,11 @@ $(function() {
}
}
function
read_card_data
(){
function
read_card_data
(){
spin
();
spin
();
$
.
ajax
(
'
https://127.0.0.1:8000/api/read-card
'
,
{
return
$
.
ajax
(
'
https://127.0.0.1:8000/api/read-card
'
,
{
method
:
'
GET
'
,
method
:
'
GET
'
,
data
:
{
block
:
DEFAULT_BLOCK
},
data
:
{
block
:
DEFAULT_BLOCK
},
timeout
:
2000
timeout
:
2000
}).
done
(
parse_data
).
fail
(
fail
);
}).
then
(
parse_data
).
fail
(
fail
);
}
}
function
init_card
(){
function
init_card
(){
let
uiid
=
check_uiid
();
let
uiid
=
check_uiid
();
...
@@ -224,7 +231,7 @@ $(function() {
...
@@ -224,7 +231,7 @@ $(function() {
value
:
DEFAULT_TEST_VALUE_DELTA
,
value
:
DEFAULT_TEST_VALUE_DELTA
,
},
},
timeout
:
2000
}
timeout
:
2000
}
).
done
(
parse_data
).
done
(
read_card_data
).
fail
(
fail
);
).
then
(
parse_data
).
then
(
read_card_data
).
fail
(
fail
);
}
}
function
decrement_value
(){
function
decrement_value
(){
let
uiid
=
check_uiid
();
let
uiid
=
check_uiid
();
...
@@ -238,7 +245,7 @@ $(function() {
...
@@ -238,7 +245,7 @@ $(function() {
value
:
DEFAULT_TEST_VALUE_DELTA
,
value
:
DEFAULT_TEST_VALUE_DELTA
,
},
},
timeout
:
2000
}
timeout
:
2000
}
).
done
(
parse_data
).
done
(
read_card_data
).
fail
(
fail
);
).
then
(
parse_data
).
then
(
read_card_data
).
fail
(
fail
);
}
}
$
(
"
#btn1
"
).
click
(
function
(){
read_card
()});
$
(
"
#btn1
"
).
click
(
function
(){
read_card
()});
$
(
"
#btn2
"
).
click
(
function
(){
init_card
()});
$
(
"
#btn2
"
).
click
(
function
(){
init_card
()});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment