趙哥-IT网络技术分享-第11页

在idea使用GitHub账号、Copilot异常

在idea使用GitHub账号、Copilot异常-IT网络技术分享
在idea使用GitHub账号、Copilot异常登录GitHub显示Invalid authentication data.Connection refused: connect 或者副驾驶显示Failed to initiate the GitHub login process. Please try again. ...
3年前
76866

thinkphp6 常用cmd命令

thinkphp6 常用cmd命令-IT网络技术分享
clear 清除运行时文件 help 显示命令的帮助 list 列出命令 run ThinkPHP 运行 PHP 内置服务器 version 显示 thinkphp 框架版本 make:command 创建一个新的命令类 make:controller 创建一个新的...
3年前
57710

Flutter computer 函数

Flutter computer 函数-IT网络技术分享
系统 API:computer 函数: 我们自己 new 一个 Isoalte 并实现通讯,多少有点麻烦,从封装的角度看其中代码基本是重复的,所以 Google 就提供了一个 API 来干这事:compute 方法 compute 方法是 ...
3年前
103410

使用 adb WiFi连接手机

使用 adb WiFi连接手机-IT网络技术分享
1.先用数据线连接电脑。 2.查看手机IP:adb shell ifconfig wlan0 其中inet addr 就是手机ip地址。 3.添加端口号:adb tcpip 5556 5556是端口可以自定义 4.连接手机:adb connect 手机IP:5...
3年前
24114

Flutter TextField 编辑框焦点概述

Flutter TextField 编辑框焦点概述-IT网络技术分享
@override Widget build(BuildContext context) { //创建FocusNode对象实例 FocusNode focusNode = FocusNode(); //添加监听器 focusNode.addListener(() { //输出当前焦点状态 print('当前状态...
3年前
2569

Android AlertDialog,PopupWindow弹窗

Android AlertDialog,PopupWindow弹窗-IT网络技术分享
AlertDialog: AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this) //设置视图,将自定义视图资源设置为 Dialog 的内容. .setView(R.layout.popwindow) //标题 .setTitle('...
3年前
2196

Android 阿里云Maven中央仓库配置

Android 阿里云Maven中央仓库配置-IT网络技术分享
settings.gradle:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { //central https://repo1.maven.org/maven2/ maven { url ...
3年前
37011

JavaScript HTML DOM事件

JavaScript  HTML DOM事件-IT网络技术分享
HTML DOM 事件HTML DOM 事件允许 JavaScript 在 HTML 文档中的元素上注册不同的事件处理程序。事件通常与函数结合使用,在事件发生之前函数不会被执行(例如当用户单击按钮时)。如需有关事件的...
3年前
22812

JavaScript HTML DOM Element(元素) 对象

JavaScript HTML DOM Element(元素) 对象-IT网络技术分享
属性和方法下面的属性和方法可用于所有 HTML 元素上:属性 / 方法描述element.accessKey设置或返回元素的快捷键。addEventListener()将事件处理程序附加到元素。element.appendChild()向元素添...
3年前
1689

JavaScript HTML DOM Document 对象

JavaScript  HTML DOM Document 对象-IT网络技术分享
查找 HTML 元素方法描述document.getElementById(id)通过元素 id 来查找元素document.getElementsByTagName(name)通过标签名来查找元素document.getElementsByClassName(name)通过类名来查找元...
3年前
40710