V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Opportunity  ›  全部回复第 1 页 / 共 6 页
回复总数  112
1  2  3  4  5  6  
13 天前
回复了 pcxys 创建的主题 JavaScript Unexpected end of input 错误,求教
说明没获取到正确的 JSON 文件,看 Network
我甚至遇到过一张卡在一部手机上能用,另一部用不了的情况,换了卡就都可以用了
都是两个账号发的。我这里 WD 都直接报毒了。
102 天前
回复了 NewConn 创建的主题 Windows Microsoft Store 无法更新 app,求问解决方法
本机代理吗?有开 UWP loopback 吗?
如果你的机器上没啥旧软件的话,可以考虑“使用 Unicode UTF-8 提供全球语言支持”
120 天前
回复了 jiuzhougege 创建的主题 GitHub git clone 怎么能快点?
我也猜一手根本没用代理

你用 http clone 的话检查一下 http_proxy https_proxy 环境变量是否设置了;
用 ssh clone 的话,除了设置环境变量,还需要在 ~/.ssh/config 配置代理:

Host github.com
User git
Port 22
HostName github.com
ProxyCommand /C/Program\ Files/Git/mingw64/bin/connect.exe ${https_proxy:+-H $https_proxy} -a none %h %p
133 天前
回复了 ahdung 创建的主题 Android 为什么刷机有风险?
不是还有 9008 嘛,问题这些工具你都拿不到啊
136 天前
回复了 hahaFck 创建的主题 TypeScript typescript 如何忽略泛型参数啊?
给工具方法再加个类型参数,然后继续写 T 呗
闲鱼买呗,反正售后都是厂家提供的
浏览器自动刷新也没啥问题吧,虽然办法有点古老,但是也很有效啊,https://www.ssllabs.com/ssltest/analyze.html 不就是这个策略
先加个 content-visibility: auto 试试
只能说 Cloudflare Pages 确实很特立独行 https://github.com/slorber/trailing-slash-guide
function ComponentsManager<T extends (new (...args: any[]) => HTMLElement)>(base: T) {
abstract class ComponentsManager extends base {

abstract renderView(): Promise<void>;

connectedCallback() {
this.renderView();
}
}
return ComponentsManager;
}

export abstract class DivComponentsManager extends ComponentsManager(HTMLDivElement) {
}

export abstract class ButtonComponentsManager extends ComponentsManager(HTMLButtonElement) {
}
你确定能这么写?
213 天前
回复了 hueidou 创建的主题 信息安全 谁听说过这种攻击方式吗?
我们的包打成 deb 又用 tar 包起来,也偶尔出现这种情况
244 天前
回复了 edward1987 创建的主题 Android 安卓 ColorOS 不再乱跳广告了!
我用的第三方启动器,现在每打开一个应用都要弹窗问一下,选上不再询问也只是对那一个应用生效,快麻了。。
287 天前
回复了 yangblink 创建的主题 TypeScript 问题一个 typescript 类型包裹问题
这种?
```
export type Client = typeof client;
export type ApiCall<T> = (client: Client) => Promise<T>;
export function useApi() {
return async function <T extends {
data: any;
error?: any;
response: Response;
}>(apiCall: ApiCall<T>): Promise<Awaited<ReturnType<ApiCall<T>>>['data']> {
const response = await apiCall(client);
return response.data;
};
}

client.GET('/url2')
const api = useApi();

const r = await api(client => client.GET('/url2'))
```
1  2  3  4  5  6  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2805 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 11:23 · PVG 19:23 · LAX 03:23 · JFK 06:23
Developed with CodeLauncher
♥ Do have faith in what you're doing.