51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Ul
linux /dev 常见特殊设备介绍与应用[loop,null,zero,full,random]
linux是文件型系统,所有硬件如软件都会在对于的目录下面有相应的文件表示。对于dev这个目录,我们知道它下面的文件,表示的是linux的设备。在windows系统中,设备大家很好理解,象硬盘,磁盘指的是实实在在硬件。而在文件系统的linux下面,都有对于文件与这些设备关联的。访问它们就可以放到实际硬件,想想还是lin...
代码星球
·
2020-03-29
linux
dev
常见
特殊
设备
关于Ubuntu中Could not get lock /var/lib/dpkg/lock解决方案
转载:关于Ubuntu中Couldnotgetlock/var/lib/dpkg/lock解决方案 1:我遇到的问题:在开机运行aptinstallvim命令的时候,如下报错:2:参考博客:在Ubuntu中,有时候运用sudo apt-getinstall安装软件时,会出现一下的情况E:Couldn...
代码星球
·
2020-03-29
lock
关于
Ubuntu
Could
not
npm run dev 报错:Error: Cannot find module 'webpack-cli/bin/config-yargs'
使用npmrundev时报错:Error:Cannotfindmodule'webpack-cli/bin/config-yargs' 原因是找不到webpack-cli这个包,使用npm添加此包即可:cnpm/npmiwebpack-cli-D 然后再执行:npmrunde...
代码星球
·
2020-03-29
npm
run
dev
报错
Error
resultful风格简介
一、为了不同的前端和后端进行信息交互,ResultfulAPI是一种比较流行的一种API规范。结构清晰符合标准,易于理解、扩展方便,便于前端开发者进行区分访问接口资源。Restfule风格是一种软件架构风格,而不是标准,只是提供了一种设计原则和约束条件。主要适用于客户端和服务器端交互的软件。是基于http协议实现。目的...
代码星球
·
2020-03-28
resultful
风格
简介
tp5分页注意,分页生成的ul class是pagination,有些模板可能将pagination定义为display:none
今天在调用分页时总是无法显示,查看网页源代码是正常的,后来发现是在css文件里将pagination定义为display:none,所以无法显示...
代码星球
·
2020-03-28
分页
pagination
tp5
注意
生成
关于递归函数返回值为null的问题
publicfunctiongettopcateid($cate_id){$pid=db('cate')->where('cate_id',$cate_id)->find();if($pid['cate_pid']!=0){$this->gettopcateid($pid['cate_pid']);}...
IT猿
·
2020-03-28
关于
递归
函数
返回
null
angularjs 给封装的模态框元素传值,和实现兄弟传值
本例实现封装的元素所放的位置不同,而选择不同的传值,这里举例封装了bootstrap模态框,以后也方便大家去直接使用。方法举例如下:首先主页调用css/js有:<linkrel="stylesheet"href="css/bootstrap.css"type="text/css"></link>...
IT猿
·
2020-03-28
传值
angularjs
装的
模态
元素
angularJS简单调用接口,实现数组页面打印
相比较jquery,angular对这种接口数据处理起来会方便的多。这里举例调用中国天气网的api接口。首先肯定要引入angular.js这个不多说<linkrel="stylesheet"href="css/bootstrap.css"type="text/css"></link><sc...
IT猿
·
2020-03-28
angularJS
简单
调用
接口
实现
基于bootstrap-multiselect.js的下拉框联动
背景:当option特别多时,一般的下拉框选择起来就有点力不从心了,所以使用multiselect是个很好的选择,可以通过输入文字来选择选项很方便,但是有一个需要下拉框联动,网上找了半天才找到解决方法,在此分享一下1、先引入 <scriptsrc="~/Assets/js/bootstrap-multi...
IT猿
·
2020-03-28
基于
bootstrap-multiselect.js
下拉
联动
gulp
详情请参见github: https://github.com/Sunnshino/gulpjs-plugs1/*2目录结构:3test(主目录)4src(输入路径)5index.html(主页面)6js(文件夹)7less(文件夹)8images(文件夹)9html(文件夹)10dest(输出路径)11js(文件夹...
IT猿
·
2020-03-28
gulp
使用startActivityForResult场景模拟
效果图如下,当我从第一个界面选择供应商的时候,我希望能得到第二个界面选择的供应商的值:具体代码,这里第二个参数为自定义的大于等于0的数字,用来标记当前跳转。Intenti1=newIntent(context,GysInfo.class);startActivityForResult(i1,3);回传数据的Activi...
IT猿
·
2020-03-27
使用
startActivityForResult
场景
模拟
How much business logic should be allowed to exist in the controller layer?
Aslittleaspossible.Preferablynone.Thecontrollershouldbeconcernedwithacceptingtherequest,askingthecorrectdomainservicetoprocesstherequest,andhandingofftherespons...
IT猿
·
2020-03-27
How
much
business
logic
should
This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request.
2020-03-1611:04:35,168ERROR[13]:System.InvalidOperationException:Thisrequesthasbeenblockedbecausesensitiveinformationcouldbedisclosedtothirdpartywebsiteswhenthi...
IT猿
·
2020-03-27
This
request
has
been
blocked
How can I manually create a authentication cookie instead of the default method?
Hereyougo.ASP.NETtakescareofthisforyouwhenyouusethehigherlevelmethodsbuiltintoFormsAuthentication,butatthelowlevelthisisrequiredtocreateanauthenticationcookie.&...
IT猿
·
2020-03-27
How
can
manually
create
authentication
Not equal <> != operator on NULL
https://stackoverflow.com/questions/5658457/not-equal-operator-on-null<>isStandardSQL-92;!=isitsequivalent.Bothevaluateforvalues,whichNULLisnot--NULLisapl...
IT猿
·
2020-03-27
Not
equal
operator
on
NULL
首页
上一页
...
211
212
213
214
215
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他