新下载了个项目模板,安装包就遇到了各种各样问题
电脑:mac
使用npm i 等命令一直安装项目,然后一直报错
2534 info run canvas2.11.2 install node_modules/canvas node-pre-gyp install --fallback-to-build --update-binary
2535 info r…
new IntersectionObserver js方法描述步骤 实现逻辑:通过监视底部节点可视情况,获取新数据进行渲染,如果获取不到最新数据则显示暂无其他数据
new IntersectionObserver 是用于监视元素可见度,所以我们只需要监视数据下方的dom是…
现象
ubuntu 下使用docker,秃然一天报了一个错误
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 排查
排查了半天,是dockerd启动的时候指定的API listen 和默认的不一致。 systemctl 启动的时…
一、再谈构造函数
1.1 构造函数体内赋值
我们知道,在创建对象时,编译器会自动调用构造函数给对象中的各个成员变量一个合适的初始值
class Date
{
public:Date(int year, int month, int day){_year year;_month month;_day day;}private:int _yea…
Windows 用 zip 压缩文件夹时报错:
<文件> cannot be compressed because includes characters that cannot be used in a compressed folder, such as <非法字符>. You should rename this file or directory.同 [1]。考虑用 python 批量检测非 ascii…
四,驱动的注册
1,struct device_driver结构体
/**
* struct device_driver - The basic device driver structure
* name: Name of the device driver.
* bus: The bus which the device of this driver belongs to.
* owner: The module own…