码迷,mamicode.com
首页 >  
搜索关键字:hybrid app    ( 59367个结果
JAVA用LDAP读取微软AD域里面的用户名组织架构等信息
package com.app.frame.ldap; import java.util.Enumeration;import java.util.Hashtable; import javax.naming.Context;import javax.naming.NamingEnumeration ...
分类:编程语言   时间:2021-03-08 13:05:28    阅读次数:0
Core Python | 2 - Core Python: Getting Started | 2.4 - Introducing Strings, Collections, and Iteration | 2.4.4 - Bytes
Bytes are very similar to strings, except that rather than being sequences of Unicode code points, they are sequences of, well, bytes. As such, they a ...
分类:编程语言   时间:2021-03-06 14:52:54    阅读次数:0
vue中computed和watch区别
一、 计算属性(computed) 1.计算属性是为了模板中的表达式简洁,易维护,符合用于简单运算的设计初衷。 例如: <p id="app">{{ myname.substring(0,1).toUpperCase() + myname.substring(1) }}</p> 运算过于复杂,冗长, ...
分类:其他好文   时间:2021-03-06 14:39:38    阅读次数:0
.net Core 上传文件详解
.net core 和.net framework上传文件有很多需要注意的地方 .net framework 上传文件用httppostedfilebase .net core 上传文件用 IFormFile 一、首先需要配置在startup 中的Configure方法内新增以下代码 app.Use ...
分类:Web程序   时间:2021-03-06 14:14:25    阅读次数:0
vue3中ref和reactive的区别(系列六)
1. ref和reactive区别: 如果在template里使用的是ref类型的数据, 那么Vue会自动帮我们添加.value 如果在template里使用的是reactive类型的数据, 那么Vue不会自动帮我们添加.value 2. Vue是如何决定是否需要自动添加.value的 Vue在解析 ...
分类:其他好文   时间:2021-03-05 13:25:48    阅读次数:0
MAC电脑安装brew
安装 首先打开brew.sh网站,把首页一条命令复制到终端里,执行,输入电脑登录密码,开始下载安装 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 换源 安 ...
分类:系统相关   时间:2021-03-05 13:12:52    阅读次数:0
File upload XSS
File upload XSS Description This script is possibly vulnerable to XSS (Cross-site scripting). The web application allows file upload and Acunetix was ...
分类:其他好文   时间:2021-03-04 13:34:27    阅读次数:0
oracle基础~rman备份脚本
一 全备 #设置环境变量 export ORACLE_BASE=/oracle export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1 export ORACLE_SID=hncdfpos001 export NLS_LANG=AMERICAN_AME ...
分类:数据库   时间:2021-03-04 13:30:40    阅读次数:0
常用Python脚本
1.请按照这样的日期格式(xxxx-xx-xx)每日生成一个文件,例如今天生成的文件为2019-04-26.log, 并且把磁盘的使用情况写到到这个文件中。 import time, os new_time = time.strftime("%Y-%m-%d") disk_status = os.p ...
分类:编程语言   时间:2021-03-04 13:27:25    阅读次数:0
Vue 4.0及以上修改默认8080端口号
详细过程见:[https://www.yuque.com/cherishtheyouth/zb30mv/wegots](Vue 4.0及以上修改默认8080端口号) Vue4.0中修改默认端口号较之前几个版本有较大变化,修改方法如下: 找到修改端口的对应文件 目录为: 项目文件夹/node_modu ...
分类:其他好文   时间:2021-03-04 13:27:08    阅读次数:0
59367条   上一页 1 ... 53 54 55 56 57 ... 5937 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!