码迷,mamicode.com
首页 >  
搜索关键字:white spaces are req    ( 5278个结果
nova-scheduler
nova-scheduler.log:220925:2020-07-10 10:49:43.084 8 INFO nova.filters [req-1d842317-8624-4354-9839-73fc0972ecb6 8d5522dc65ad4669aebbc2c80de7d2e9 5bf9c ...
分类:其他好文   时间:2020-07-10 11:36:42    阅读次数:66
登陆界面
注册页面 新用户注册 USER REGISTER </div> <div class="rg_center"> <div class="rg_form"> <!--定义表单 form--> <form action="#" method="post"> <table> <tr> <td class= ...
分类:其他好文   时间:2020-07-10 00:24:22    阅读次数:68
07_事件的监听
var http = require('http'); // 引入 events 模块 var events = require('events'); var server = http.createServer(); server.on('request',function (req,res) { ...
分类:其他好文   时间:2020-07-09 20:50:45    阅读次数:65
drf序列化组件
1 序列化组件介绍 1. 序列化,序列化器会把模型对象转换成字典,经过response以后变成json字符串 2. 反序列化,把客户端发送过来的数据,经过request以后变成字典,序列化器可以把字典转成模型 3. 反序列化,完成数据校验功能 2 简单使用 1 写一个序列化的类,继承Serializ ...
分类:其他好文   时间:2020-07-09 00:56:45    阅读次数:50
vue 解析 textarea 换行符
如果使用文本域输入内容, 在输入内容之后 我们可能习惯性的会按一下回车换行 , 然后我们将内容保存给后台 后台保存之后,当我们再次获取展示时,发现之前的换行符都没有了 。 解决办法: 在需要展示文本域的内容的盒子添加一个样式 .textarea { white-space: pre-line; } ...
分类:其他好文   时间:2020-07-07 11:32:25    阅读次数:168
Jquery基础入门
Jquery入门 支持链式操作 $('.c1').addClass('c2').text('xxx').addClass('xxx').css({'color':'white'}); jquery引入方式 外部网址引入 <!--<script src="https://cdn.bootcss.com ...
分类:Web程序   时间:2020-07-07 09:38:08    阅读次数:106
小程序 纵向轮播 显示3列 每次滚动一个效果
wxml <view class="swiper-view"> <swiper next-margin="100rpx" previous-margin="100rpx" class="swiper_container" vertical="true" autoplay="true" circula ...
分类:微信   时间:2020-07-06 19:45:33    阅读次数:176
UnityShader——置灰
实现置灰非常简单,只要用原来颜色的rgb分量按照不同的权重加起来,就可以得到一个灰度值,这个灰度值就是新的颜色的rgb分量。 Shader "WS/Gray" { Properties { _MainTex ("Texture", 2D) = "white" {} } SubShader { Tag ...
分类:编程语言   时间:2020-07-06 11:03:46    阅读次数:87
node.js 之express全局安装并且启动一个微服务
全局安装:npm install express -g 引入express let express = require('express'); let app = express(); app.get('/',(req,res)=>{ res.send('这是首页') }) app.listen(8 ...
分类:Web程序   时间:2020-07-05 22:44:33    阅读次数:122
单行文本溢出加...的效果实现
white-space: nowrap; /* 文本不换行 */ overflow: hidden; /* 溢出文本隐藏 */ text-overflow: ellipsis; /* 溢出文本省略 ...
分类:其他好文   时间:2020-07-05 21:18:55    阅读次数:59
5278条   上一页 1 ... 13 14 15 16 17 ... 528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!