部活紹介

CMC -コンテンツビジネス・マスターズ・クラブ-

承認制
最終更新日: 2024-07-31 15:15:08
タイムライン投稿
345
ライブラリ投稿
125
開催済イベント
145
参加者
257

CMCメンバーのためのグループです。

var intervalId = setInterval(function() { $.ajax({ url: '/polling', // ここにPOSTリクエストを送信するURLを指定してください type: 'POST', data: { 'user_id': '' }, success: function(data) { console.log(data); if (data.message === 'OK') { clearInterval(intervalId); window.location.href = data.redirect_url; //window.location.href = '/home'; } }, error: function(error) { // エラーを処理します console.log(error); } }); }, 1000);