今日营业中
  • 首页
  • 归档
  • 分类
  • 标签
  • 首页
  • 归档
  • 分类
  • 标签
  • TCP 怎么保证可靠传输?

    1. TCP 怎么保证可靠传输? TCP协议传输的特点主要就是面向字节流、传输可靠、面向连接。 TCP协议保证数据传输可靠性的方式主要有: 数据分割 应用数据被分割成 TCP 认为最合适发送的数据块。 编号 TCP 给发送的每一个包进行编号,接收...
     2021-02-04  
    • 网络协议 
     
    • TCP 
    • | ARQ协议 
    Read more 
  • 从输入 URL 到展现页面的全过程

    从输入 URL 到展现页面的全过程 8 个过程 URL 输入 DNS 解析 TCP 连接 发送 HTTP 请求 服务器处理请求 服务器相应请求 浏览器解析渲染页面 连接结束 1. URL 输入 URL中文名叫做统一资源定位符,统一资源定位符是对...
     2021-02-03  
    • 网络协议 
     
    • 三次握手 
    • | DNS 
    • | HTTP 请求 
    Read more 
  • 微信小程序自定义组件、父子组件相互调用传值

    1.创建 header 组件1.1 选中文件夹,右键新建 Component。 暂命名为 header1.2 header.js 文件配置组件属性与方法 交互关键方法⚠️ this.triggerEvent(‘subClickEvent’, ‘来自 ...
     2021-01-15  
    • 微信小程序 
    Read more 
  • 微信小程序引入模块,App.js

    创建一个模块 utils/appConfig.js1234567const appConfig = { host: 'https://www.baidu.com', sayHi(e) ...
     2021-01-14  
    • 微信小程序 
    Read more 
  • 微信小程序界面跳转传值、反向传值

    page1 点击事件 .wxml1<text bind:tap="pushNav">界面跳转传值</text> page1 跳转方法实现 .js123456789101112131415...
     2021-01-14  
    • 微信小程序 
    Read more 
  • Flutter 路由跳转

    基本路由跳转 加传值123Navigator.of(context).push(MaterialPageRoute( builder: (context) => MyRouterPage(title: ...
     2020-12-29  
    • Flutter 
    Read more 
  • Flutter 组件 BottomNavigationBar

    123int index = 0;var pages = [HomePage(), SearchPage(), SetPage()];var titls = [Text('首页'), Text('...
     2020-12-29  
    • Flutter 
    Read more 
  • Flutter 组件 StatefulWidget

    StatefulWidget 动态组件,页面可变化 使用 setState(() {}); 12345678910111213141516171819202122232425262728293031323334353637383940414243...
     2020-12-29  
    • Flutter 
    Read more 
  • Flutter 组件 Wrap

    Wrap 流式布局 123456789101112131415161718192021222324252627282930Wrap( spacing: 10, runSpacing: 10, alignment: Wr...
     2020-12-29  
    • Flutter 
    Read more 
  • Flutter 组件 AspectRatio、Card

    AspectRatio 设置自身比例 1234567891011AspectRatio( aspectRatio: 5.0 / 1.0, child: Container( child: Te...
     2020-12-29  
    • Flutter 
    Read more 
Prev Next
© 2020 -  2021  xxxixxxx
Powered by Hexo | Theme Keep v3.4.0