摘要:
def extract_number(filename): # 提取文件名中的数字部分 return int(''.join(filter(str.isdigit, filename))) target_list = sorted(os.listdir(path),key=extract_numbe 阅读全文
摘要:
1.vue中的页面和非页面文件夹需要区分,前方最好加上Page头 阅读全文
摘要:
<template> <div class="project"> <first-page></first-page> <second-page></second-page> </div> </template> <script> import FirstPage from './FirstPage1 阅读全文
摘要:
import sklearn.datasets as sk from sklearn.discriminant_analysis import LinearDiscriminantAnalysis from sklearn.model_selection import train_test_spli 阅读全文
摘要:
<div id="Book" style="background-color: cornflowerblue;"> <h2 style="text-align: center;">记账本</h2> <div style="text-align: center;"> 支出:<input type="t 阅读全文
摘要:
<div id="app16" style="text-align: center;margin-top: 10%;"> <div> <input id="sou" type="text" style="width: 40%;" v-model="word"> <button style="heig 阅读全文
摘要:
<div id="app15"> <ul> <li v-for="(item , index) in news" :key="item.id" > {{ item.title }} <img alt="img" :src="item.img"> </li> </ul> </div> <script> 阅读全文
摘要:
1.什么是跨域 我们访问接口,不论你是前后端相连,还是网上偷偷爬取黄色视频,都无法绕过一个url,我们在小学三年级时学过,一个url的组成是这样的 协议(http、https):表示URL使用的协议。域名(localhost):表示服务器的域名。端口(8080):表示服务器的端口号。路径(/proj 阅读全文
摘要:
表格展示区 <el-table :data="dis" style="width: 100%;height: 525px;"> </el-table> 翻页区 <to-page :value="{ page : tableData.length, current_page:current_page 阅读全文
摘要:
1.共同之处: data与props都是数据,都可以存储,并且动态渲染 2.不同之处: data是组件本身的数据,支持自身修改,然而props是外部数据(由父组件传递而来的数据),不支持自身修改,如果想要修改需要this.$emit('父组件监视函数名',希望修改的的值的结果) 阅读全文