码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
Vue子组件中属性类型的限定及默认值的设定
案例源代码 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="vie ...
分类:其他好文   时间:2021-02-15 12:05:17    阅读次数:0
杂 [页面重定项、存储变量、全局应用程序类、在面板中添加文本框、DropDownList添加项、创建动态标签]
页面重定项 例:将文本框内容传递至第二个页面: Response.Redirect("Login.aspx?name=" + txtName.Text.ToString()); 获取传过来的信息: if (Request.QueryString["name"] != null) { txtName. ...
分类:其他好文   时间:2021-02-15 12:04:51    阅读次数:0
[Dart语法]第五章:函数
函数 函数定义 //定义函数(方法) void printInfo() { String name = 'Tobu'; return print(name); } //函数调用 printInfo();//Tobu //私有函数定义 文件内可以随便调用 _privaFuction(){ ... } ...
分类:其他好文   时间:2021-02-15 12:03:40    阅读次数:0
python 使用多线程同时执行多个函数
import threading import time def test1(): print(1+5) def test2(): print(5+8) def test3(): print(5 + 8) def test4(): print(5 + 8) def test5(): print(5 ...
分类:编程语言   时间:2021-02-15 12:03:29    阅读次数:0
Atcoder AGC1~10 problem list
AT1981 [AGC001C] Shorten Diameter \(solved\) AT1982 [AGC001D] Arrays and Palindrome AT1983 [AGC001E] BBQ Hard \(solved\) AT1984 [AGC001F] Wide Swap AT ...
分类:其他好文   时间:2021-02-15 11:56:59    阅读次数:0
单源最短路 : 多起点
https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:52    阅读次数:0
单源最短路 : 计数
https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:26    阅读次数:0
继承React基础组件时,泛型写法
一、基础组件 export interface BaseProps { name: string; } export interface BaseState { age: number; } export class BaseComp<P extends BaseProps = any, S ext ...
分类:其他好文   时间:2021-02-15 11:51:28    阅读次数:0
uniapp 模块权限说明
uniapp 模块权限说明 // 允许拍照 "<uses-feature android:name=\"android.hardware.camera\"/>", "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>" ...
分类:移动开发   时间:2021-02-15 11:46:56    阅读次数:0
yaml文件示例
apiVersion: v1 kind: Service metadata: name: zookeeper-service labels: app: zookeeper spec: type: NodePort ports: - port: 2181 name: zookeeper nodePor ...
分类:其他好文   时间:2021-02-10 13:32:22    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!