소스 검색

「風」通行證

Mike 3 년 전
부모
커밋
e9155965e0
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      ArkCard-web/event.html

+ 3 - 2
ArkCard-web/event.html

@@ -112,6 +112,8 @@ function nft_event() {
     var jsonString = JSON.stringify(jsonInfo);
     console.log(jsonString);
 
+    $('#userId').text(context.userId);
+
     $.ajax({
         type: 'POST',
         url: 'https://ark.cards:8228/event',
@@ -154,7 +156,6 @@ $(document).ready(function () {
         console.log(profile);
 
         userId = context.userId;
-        $('#userId').text(context.userId);
 
         // login
         if (!liff.isLoggedIn()) {
@@ -185,7 +186,7 @@ $(document).ready(function () {
             return false;
         }
 
-        nft_event();
+        nft_event(userId);
     });
 });
 </script>