第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在用戶打開(kāi)活動(dòng)時(shí)發(fā)出網(wǎng)絡(luò)請(qǐng)求,但前提是自上次請(qǐng)求以來(lái)已過(guò)去 24 小時(shí)?

如何在用戶打開(kāi)活動(dòng)時(shí)發(fā)出網(wǎng)絡(luò)請(qǐng)求,但前提是自上次請(qǐng)求以來(lái)已過(guò)去 24 小時(shí)?

鴻蒙傳說(shuō) 2023-03-17 16:41:26
我有一個(gè)活動(dòng)發(fā)送網(wǎng)絡(luò)請(qǐng)求以從 API 獲取一些數(shù)據(jù)并將其保存在數(shù)據(jù)庫(kù)中,但是每次用戶打開(kāi)活動(dòng)時(shí)它都會(huì)發(fā)送請(qǐng)求,有沒(méi)有辦法僅在 24 小時(shí)過(guò)去后才發(fā)出請(qǐng)求自上次請(qǐng)求以來(lái)?
查看完整描述

1 回答

?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以將上次點(diǎn)擊時(shí)間存儲(chǔ)在共享首選項(xiàng)中,當(dāng)用戶打開(kāi)該活動(dòng)時(shí),獲取上次保存時(shí)間并與當(dāng)前時(shí)間進(jìn)行比較,如果它大于 24 小時(shí),則點(diǎn)擊您的 API,否則不執(zhí)行任何操作。要像這樣創(chuàng)建共享引用類(lèi):-


public class AppPrefrences {


            private static SharedPreferences mPrefs;

            private static SharedPreferences.Editor mPrefsEditor;


    public static String getLastTime(Context ctx) {

            mPrefs = PreferenceManager.getDefaultSharedPreferences(ctx);

            return mPrefs.getString("lstTime", "");

        }


        public static void setLastTime(Context ctx, String value) {

            mPrefs = PreferenceManager.getDefaultSharedPreferences(ctx);

            mPrefsEditor = mPrefs.edit();

            mPrefsEditor.putString("lastTime", value);

            mPrefsEditor.commit();

        }


public static void clearAllData(Context ctx) {

        mPrefs = PreferenceManager.getDefaultSharedPreferences(ctx);

        mPrefsEditor = mPrefs.edit();

        mPrefsEditor.clear();

        mPrefsEditor.commit();

    }

        } 

設(shè)置你的時(shí)間這樣做: -


setLastTime(this, "current time");

最后一次:-


String lastTime = getLastTime(this);

現(xiàn)在在 lastTime 你得到了你最后一次 api 命中時(shí)間現(xiàn)在得到當(dāng)前時(shí)間并比較兩個(gè)時(shí)間并執(zhí)行你的代碼。


查看完整回答
反對(duì) 回復(fù) 2023-03-17
  • 1 回答
  • 0 關(guān)注
  • 99 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)