function getTimes() { var obj_file = document.getElementById("upload"); var content = obj_file.files[0] console.log(content) //获取时长 var url = URL.crea ...
分类:
Web程序 时间:
2021-06-07 20:57:00
阅读次数:
0
接口 接口的声明 [可见度] interface 接口名称 [extends 其他的接口名] { // 声明变量 // 抽象方法 } //例子 /* 文件名 : Animal.java */ interface Animal { public void eat(); public void trav ...
分类:
编程语言 时间:
2021-06-07 20:50:15
阅读次数:
0
package operator;//逻辑运算符public class Demo05 { public static void main(String[] args) { // 与(and) 或(or) 非(取反) boolean a = true; boolean b = false; Syst ...
分类:
编程语言 时间:
2021-06-07 20:40:22
阅读次数:
0
.vscode/tasks.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "t ...
分类:
编程语言 时间:
2021-06-07 20:25:28
阅读次数:
0
cURL is one of most powerful tools for testing HTTP traffic. We typically use cURL to interact with HTTP APIs or test websites. Although cURL supports ...
分类:
Web程序 时间:
2021-06-07 20:18:30
阅读次数:
0
class Human { constructor(name, age) { //name age 是传参 this.name = name; this.age = age } } let ren = new Human("小明", 100); // 使用Human类,实例化类 console.lo ...
分类:
Web程序 时间:
2021-06-07 20:11:10
阅读次数:
0
CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(Pangolin_project) #添加Pangolin画图依赖库 find_packa ...
分类:
其他好文 时间:
2021-06-06 19:47:00
阅读次数:
0
添加依赖 def camerax_version = "1.0.0" // CameraX core library using camera2 implementation implementation "androidx.camera:camera-camera2:$camerax_versio ...
分类:
其他好文 时间:
2021-06-06 19:36:16
阅读次数:
0
验证理论 1.OSPF信息类型,每个信息类型的作用,每个信息类型中每个字段存在的价值 第一节——通用报头 实验拓扑: 初始配置: 将接口配置地址,抓包开始后配置上OSPF 1.OSPF通用报头 OSPF的5种报文具有相同的报文头格式,长度为24字节 内容: 字段 长度 含义 Version 1字节 ...
分类:
其他好文 时间:
2021-06-06 19:27:17
阅读次数:
0
def resum(request): usuari=Usuari.objects.order_by('usuari_id').values_list('usuari_id', flat=True) print(usuari) <QuerySet [1, 2, 3, 4, 5, 6, 50, 51] ...
分类:
其他好文 时间:
2021-06-06 19:24:17
阅读次数:
0