一、 <template> <div class="main"> <div class="contant"> <router-view /> </div> <div class="footer"> <nav-bar></nav-bar> </div> </div> </template> <scri ...
分类:
其他好文 时间:
2020-04-22 19:41:09
阅读次数:
71
论文地址 :https://arxiv.org/abs/1906.01753 作者 :Shany Barhom, Vered Shwartz, Alon Eirew, Michael Bugert, Nils Reimers, Ido Dagan 机构 : Bar-Ilan University, ...
分类:
其他好文 时间:
2020-04-22 00:10:45
阅读次数:
68
工作中的项目不止有页面繁多的模块化项目,还会只有一两个页面的类似于填写信息参与活动的活动页。这个时候,就可以回归以前的三剑客模式,在 index.html 里引用 vue.js 进行开发。 关键点: 引入 babel-polyfill 以转换 es6 的代码,需要作为第一个引入的 script 脚本 ...
分类:
其他好文 时间:
2020-04-21 18:06:52
阅读次数:
53
从系统架构来看,目前的商用服务器大体可以分为三类,即: 对称多处理器结构(SMP:Symmetric Multi-Processor) 非一致存储访问结构(NUMA:Non-Uniform Memory Access) 以及海量并行处理结构(MPP:Massive Parallel Processi ...
分类:
其他好文 时间:
2020-04-21 16:45:17
阅读次数:
80
<scroll-view bindscrolltolower="YourFunction" lower-threshold=“50”></scroll-view> 1 YoourFunction(){ 2 console.log("触底了"); 3 wx.showToast({ 4 title: ' ...
分类:
微信 时间:
2020-04-21 14:58:30
阅读次数:
366
1:空白空间的处理 white-space:;prepre-wrappre-lineinherit 继承!nowrap 不让文本换行 2:溢出属性(控制内容溢出时候的显示方式) overflow属性:?? auto 当内容超出的时候有滚动条,没有超出的时候没有滚动条?? scroll 添加滚动条?? ...
分类:
其他好文 时间:
2020-04-21 13:20:56
阅读次数:
66
1、pip下载安装 pip下载 进入https://pypi.python.org/pypi/pip,下载 .tar.gz压缩包 Linux安装pip # tar -xzvf pip-1.5.4.tar.gz 解压 # cd pip-1.5.4 进入解压文件 # python setup.py in ...
分类:
编程语言 时间:
2020-04-20 20:01:13
阅读次数:
71
原文地址:https://www.cnblogs.com/architectforest/p/12638773.html 一,lsof的用途 lsof,List Open Files 列出当前系统打开文件的工具。 在linux环境下,任何事物都以文件的形式存在, 所以lsof通过文件不仅仅可以访问常 ...
分类:
其他好文 时间:
2020-04-20 16:06:31
阅读次数:
87
1.安装 建议不要用 cnpm 安装 会有各种诡异的bug 可以通过如下操作解决 npm 下载速度慢的问题 npm install --registry=https://registry.npm.taobao.org 可以通过重新指定 registry 来解决 npm 安装速度慢的问题。若还是不行, ...
分类:
其他好文 时间:
2020-04-20 12:10:38
阅读次数:
74