8 Matching Annotations
  1. Last 7 days
    1. layer提供了5种层类型。可传入的值有:0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)。 若你采用layer.open({type: 1})方式调用,则type为必填项(信息框除外)

      layer.open是Layui框架中的一个函数,用于打开不同的层,默认层类型为信息框。以下是对layer.open函数中的type参数的详细解释:

      问ai比较快 直接找到这些层的样式实现比较困难 0(信息框,默认):表示默认的信息框方式。 1(页面层):表示打开一个新的页面层。 2(iframe层):表示通过iframe层以HTML内容的形式打开。 3(加载层):表示展示加载动画。 4(tips层):表示显示简单的全局提示信息。

  2. Jun 2022
    1. 当 OSI 模型的下层上使用了一个无连接协议时,如何检测并根据需要重新传输丢失的数据?

      ???

  3. May 2022
    1. 计算机中开辟一个内存区,同时也开辟一个硬盘区作为数据传输的缓冲区,然后用这个缓冲区来暂时保存用户以前访问过的信息

      如果自己电脑的内存很大的话

      是不是记笔记就会快很多

  4. Apr 2022
    1. Hypothesis 还可以用来批注 PDF 文档,无论 PDF 是存在线上还是本地

      想知道如果pdf等所有数据都在云端

      安全性

      后续收费?

      为什么会有人免费提供这种保存功能嗯

    2. Bearer 方式

      ???

    3. Notion 的页面由可以随意移动和变换的块(block)组成,可以很方便地模拟网页文本内容和结构的变动。

      有趣 一个印象点

    1. 今天bower install前端依赖时候出现错误Additional error details: fatal: unable to access 'https://github.com/ivaynberg/select2.git/': OpenSSL SSL_read: Connection was reset, errno 10054 怀疑是默认开启https访问git config --global http.sslVerify "false" 在git客户端输入即可!

      连接失败处理

    1. Try doing a commit command. git commit -m "first commit" Stage all files or select specific files. git add . Check the status of the files. git status Push the code to your repository. git push origin main (or whatever is the name of your main or master branch).

      在push之前一定要记得 git commit