AS9 续航突然尿崩 - V2EX
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
document.addEventListener('DOMContentLoaded', function() { // Function to escape HTML entities function escapeHtml(text) { if (!text) return ''; var div = document.createElement('div'); div.textCOntent= text; return div.innerHTML; } // Function to render campaign based on display format function renderCampaign(campaign) { let html = ''; let displayFormat = campaign.display_format || 'text-only'; let title = escapeHtml(campaign.title); let description = escapeHtml(campaign.description); let callToAction = escapeHtml(campaign.call_to_action); let link = escapeHtml(campaign.link); // Check if required image URL is available for the display format, fallback to text-only if not if (displayFormat === 'small-with-description' && !campaign.img_small_url) { displayFormat = 'text-only'; } else if (displayFormat === 'banner-only' && !campaign.img_banner_url) { displayFormat = 'text-only'; } else if ((displayFormat === 'big-only' || displayFormat === 'big-with-description' || displayFormat === 'big-with-title-description-button') && !campaign.img_big_url) { displayFormat = 'text-only'; } html = `
${title}
`; switch(displayFormat) { case 'text-only': html += `
${description}
`; break; case 'small-with-description': html += `
${campaign.img_small_cid ? `
` : ''}
${description}
`; break; case 'banner-only': html += `
`; break; case 'big-only': html += `
`; break; case 'big-with-description': html += `
`; html += `
${description}
`; break; case 'big-with-title-description-button': html += `
`; html += `
${description}
`; html += ``; break; default: html += `
${description}
`; } html += `` return html; } // Load campaign from emitter var xhr = new XMLHttpRequest(); xhr.open('GET', '/pro/emitter', true); xhr.setRequestHeader('Content-Type', 'application/json'); xhr.Onreadystatechange= function() { if (xhr.readyState === 4) { if (xhr.status === 200) { try { var campaign = JSON.parse(xhr.responseText); if (campaign && campaign.id) { var html = renderCampaign(campaign); document.getElementById('pro-campaign-container').innerHTML = html; } else { // No campaign to display, hide the container document.getElementById('pro-campaign-container').style.display = 'none'; } } catch (e) { // Parse error, hide the container document.getElementById('pro-campaign-container').style.display = 'none'; console.log('Error parsing campaign data: ' + e.message); } } else { // HTTP error, hide the container document.getElementById('pro-campaign-container').style.display = 'none'; console.log('Error loading campaign: HTTP ' + xhr.status); } } }; xhr.send(); });
KyleLrz
V2EX    WATCH

AS9 续航突然尿崩

  •  
  •   KyleLrz 2024-03-15 09:08:08 +08:00 2600 次点击
    这是一个创建于 574 天前的主题,其中的信息可能已经有所发展或是发生改变。
    更最新系统之前勉强续航 2 天,现在前天 11-12 点充满,戴着睡觉,到第二天 11 点左右就剩 40 左右的电了,没更系统之前还有个 60+
    13 条回复    2024-04-11 17:15:06 +08:00
    wclebb
        1
    wclebb  
       2024-03-15 09:10:56 +08:00
    我寻思 AS 是什么……
    你试试 iPhone 也升级,这通常是因为假性断链,或版本不一致导致的断链(看起来在连了,但没有)

    如果还是一样,那 AW S9 也要抹盘重新来,大概解决问题。
    之前 AW S4 困扰过。
    KyleLrz
        2
    KyleLrz  
    OP
       2024-03-15 09:15:27 +08:00
    @wclebb 哈哈,早上突然脑子断层了打了 as..手机也是最新系统,我周末抹盘试试
    haitaoli
        3
    haitaoli  
       2024-03-15 09:39:01 +08:00
    我的 S8 最近也耗电贼快,本来睡前充满,戴上睡觉,到第二天晚上九十点钟可能还剩二三十 现在经常就提醒不足 10%了
    chitanda
        4
    chitanda  
       2024-03-15 09:50:34 +08:00
    我 s5 ,用了 4 年,80 健康,每天 2 充
    xmy2232867
        5
    xmy2232867  
       2024-03-15 10:10:15 +08:00   5
    不如直接叫 AWS ?
    ktqFDx9m2Bvfq3y4
        6
    ktqFDx9m2Bvfq3y4  
       2024-03-15 10:22:46 +08:00 via iPhone
    op 你看看是不是充满了。我更新到 10.4 后 aw 开始充电优化,现在只给我冲到 80%然后慢冲。以前我是从 100 到 60 ,现在是从 80 到 40 。不影响使用同时对电池好些。
    YJMe
        7
    YJMe  
       2024-03-15 10:32:15 +08:00 via iPhone
    新买没到一个月,此前 watchOS 10.3.1 + iOS 17.3.1
    现在也都升到 x.4 ,续航仍然是勉强 2 天,没感觉到变化.
    nitmali
        8
    nitmali  
       2024-03-15 10:57:52 +08:00
    看一看健康里面统计的数据是否有几项没有更新,
    有一定可能是同步数据卡住了,就会非常耗电,
    解决方法是手机、手表重启,不行就重新配对。
    vate32
        9
    vate32  
       2024-03-15 11:08:08 +08:00
    手持 S7 也会偶尔遇到,前一天晚上睡觉前充满,正常第二天下午吃饭还有 40%,但偶发会到第二天中午就低于 20%红了,一般重启一下就好了。
    windstill
        10
    windstill  
       2024-03-15 15:28:32 +08:00
    我以为又是哪个电动车新型号
    mirtest
        11
    mirtest  
       2024-03-15 16:09:35 +08:00 via iPhone
    感觉是 10.4 的 bug S8 也碰到两次
    criag
        12
    criag  
       2024-03-15 17:45:28 +08:00
    话说 watch 更新 10.4 直接卡在正在准备了。。进度条不走
    5n65MLXs6OLPCWOF
        13
    5n65MLXs6OLPCWOF  
       2024-04-11 17:15:06 +08:00
    这种情况我也遇到过几次,重启之后就恢复了,怀疑是系统 bug
    关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     916 人在线   最高记录 6679       Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 24ms UTC 22:19 PVG 06:19 LAX 15:19 JFK 18:19
    Do have faith in what you're doing.
    ubao snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86