#Ul

linux /dev 常见特殊设备介绍与应用[loop,null,zero,full,random]

linux是文件型系统,所有硬件如软件都会在对于的目录下面有相应的文件表示。对于dev这个目录,我们知道它下面的文件,表示的是linux的设备。在windows系统中,设备大家很好理解,象硬盘,磁盘指的是实实在在硬件。而在文件系统的linux下面,都有对于文件与这些设备关联的。访问它们就可以放到实际硬件,想想还是lin...

关于Ubuntu中Could not get lock /var/lib/dpkg/lock解决方案

转载:关于Ubuntu中Couldnotgetlock/var/lib/dpkg/lock解决方案 1:我遇到的问题:在开机运行aptinstallvim命令的时候,如下报错:2:参考博客:在Ubuntu中,有时候运用sudo apt-getinstall安装软件时,会出现一下的情况E:Couldn...

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

resultful风格简介

一、为了不同的前端和后端进行信息交互,ResultfulAPI是一种比较流行的一种API规范。结构清晰符合标准,易于理解、扩展方便,便于前端开发者进行区分访问接口资源。Restfule风格是一种软件架构风格,而不是标准,只是提供了一种设计原则和约束条件。主要适用于客户端和服务器端交互的软件。是基于http协议实现。目的...
代码星球 ·2020-03-28

tp5分页注意,分页生成的ul class是pagination,有些模板可能将pagination定义为display:none

今天在调用分页时总是无法显示,查看网页源代码是正常的,后来发现是在css文件里将pagination定义为display:none,所以无法显示...

关于递归函数返回值为null的问题

publicfunctiongettopcateid($cate_id){$pid=db('cate')->where('cate_id',$cate_id)->find();if($pid['cate_pid']!=0){$this->gettopcateid($pid['cate_pid']);}...

angularjs 给封装的模态框元素传值,和实现兄弟传值

本例实现封装的元素所放的位置不同,而选择不同的传值,这里举例封装了bootstrap模态框,以后也方便大家去直接使用。方法举例如下:首先主页调用css/js有:<linkrel="stylesheet"href="css/bootstrap.css"type="text/css"></link>...

angularJS简单调用接口,实现数组页面打印

相比较jquery,angular对这种接口数据处理起来会方便的多。这里举例调用中国天气网的api接口。首先肯定要引入angular.js这个不多说<linkrel="stylesheet"href="css/bootstrap.css"type="text/css"></link><sc...

基于bootstrap-multiselect.js的下拉框联动

背景:当option特别多时,一般的下拉框选择起来就有点力不从心了,所以使用multiselect是个很好的选择,可以通过输入文字来选择选项很方便,但是有一个需要下拉框联动,网上找了半天才找到解决方法,在此分享一下1、先引入 <scriptsrc="~/Assets/js/bootstrap-multi...

gulp

详情请参见github:  https://github.com/Sunnshino/gulpjs-plugs1/*2目录结构:3test(主目录)4src(输入路径)5index.html(主页面)6js(文件夹)7less(文件夹)8images(文件夹)9html(文件夹)10dest(输出路径)11js(文件夹...
IT猿 ·2020-03-28

使用startActivityForResult场景模拟

效果图如下,当我从第一个界面选择供应商的时候,我希望能得到第二个界面选择的供应商的值:具体代码,这里第二个参数为自定义的大于等于0的数字,用来标记当前跳转。Intenti1=newIntent(context,GysInfo.class);startActivityForResult(i1,3);回传数据的Activi...

How much business logic should be allowed to exist in the controller layer?

Aslittleaspossible.Preferablynone.Thecontrollershouldbeconcernedwithacceptingtherequest,askingthecorrectdomainservicetoprocesstherequest,andhandingofftherespons...

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...

How can I manually create a authentication cookie instead of the default method?

Hereyougo.ASP.NETtakescareofthisforyouwhenyouusethehigherlevelmethodsbuiltintoFormsAuthentication,butatthelowlevelthisisrequiredtocreateanauthenticationcookie.&...

Not equal <> != operator on NULL

https://stackoverflow.com/questions/5658457/not-equal-operator-on-null<>isStandardSQL-92;!=isitsequivalent.Bothevaluateforvalues,whichNULLisnot--NULLisapl...
首页上一页...211212213214215...下一页尾页