码迷,mamicode.com
首页 >  
搜索关键字:child    ( 3634个结果
CF438D The Child and Sequence
一道CF线段树好题. 前置芝士 1. "线段树" :一个很有用数据结构. 2. "势能分析" :用来证明复杂度,其实不会也没什么关系啦. 具体做法 不难发现,对于一个数膜一个大于它的数后,这个数至少减少一半,每个数最多只能被膜$\log_2N$次,所以就可以暴力修改了,如果当前子树的最大值也比膜数要 ...
分类:其他好文   时间:2020-01-17 21:09:08    阅读次数:74
VUE2——事件驱动弹窗
前几天想了解vue如何写弹窗组件,参考了知乎上的回答:https://www.zhihu.com/questio...有以下两种可取的写法:1.状态管理 如果弹窗组件放在根组件,使用vuex来管理组件的show和hide。放在组件内,通过增加v-show或v-if来控制,可结合slot,定义不同需求 ...
分类:其他好文   时间:2020-01-16 23:50:30    阅读次数:109
vue子组件值跟着父组件改变
父组件 <template> <div id="list"> 父组件的值<input type="text" v-model="parentVal"> <div> <child :inputData="parentVal"></child> </div> </div> </template> <sc ...
分类:其他好文   时间:2020-01-15 12:13:58    阅读次数:105
uniapp - props、 ref、$emit、$parent、$child
举个例子来解释一下何为父组件,何为子组件? index.vue导入sunui-cell组件的时候,我们就称index.vue为父组件依次类推 一、props(一般用来单向传值) 1. 何为单向传值? 即父组件传值给子组件(首次)但不能动态(再次)改变子组件现有的值,但我非要改呢? 通过watch监听 ...
分类:移动开发   时间:2020-01-15 11:59:23    阅读次数:113
双曲线
代码: class BottomClipper extends CustomClipper<Path> { @override Path getClip(Size size) {//child 元素的size var path = Path(); path.lineTo(0, 0);//起始点 pa ...
分类:其他好文   时间:2020-01-14 20:23:47    阅读次数:60
querylist爬取页面内容rules记录
querylist真的挺好用的!!!感谢!!!参考链接:https://learnku.com/laravel/t/6262/querylist-4-concise-and-elegant-php-collection-tool (querylist文档打不开,不知道什么原因,ping不通域名了都, ...
分类:其他好文   时间:2020-01-14 16:11:20    阅读次数:180
Django Admin Cookbook-38如何获取特定对象的Django Admin后台URL
38.如何获取特定对象的Django Admin后台URL? Hero模型有一个children字段,显示每个英雄的孩子的名字。你被要求将每个childrin链接到Hero模型更改页面。实现如下: 以上的 返回一个对象后台修改页的URL。 其他页面如下: 删除页URL: 历史页URL: "返回目录" ...
分类:Web程序   时间:2020-01-14 16:00:22    阅读次数:88
经典面试题:求一个网页中出现次数最多的三种标签
1 const html=document.querySelector('html') 2 const htmlChild=html.children; 3 let obj={}; 4 function fn(children){ 5 for(let i of children){ 6 if(obj ...
分类:Web程序   时间:2020-01-13 23:56:34    阅读次数:192
expansiontile 打开关闭楼层
代码: body: Center( child: ExpansionTile( leading: Icon(Icons.ac_unit),//左边图标 title: Text('点击打开'),//图标后面的文字 backgroundColor: Colors.orange,//打开的背景色 chil ...
分类:其他好文   时间:2020-01-13 20:14:40    阅读次数:153
JAVA的static关键字
先看以下代码 package javastudy; public class StaticDemo { public static void main(String[] args) { Child c1=new Child(); c1.name="zhangsan"; // c1.speak(); ...
分类:编程语言   时间:2020-01-13 16:14:20    阅读次数:82
3634条   上一页 1 ... 42 43 44 45 46 ... 364 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!