会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
cocotun
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
18
下一页
2023年11月28日
python读取文件时按数字大小顺序排列
摘要: def extract_number(filename): # 提取文件名中的数字部分 return int(''.join(filter(str.isdigit, filename))) target_list = sorted(os.listdir(path),key=extract_numbe
阅读全文
posted @ 2023-11-28 20:16 子过杨梅
阅读(193)
评论(0)
推荐(0)
2023年11月25日
注意
摘要: 1.vue中的页面和非页面文件夹需要区分,前方最好加上Page头
阅读全文
posted @ 2023-11-25 21:21 子过杨梅
阅读(11)
评论(0)
推荐(0)
vue脚手架的练习1
摘要: <template> <div class="project"> <first-page></first-page> <second-page></second-page> </div> </template> <script> import FirstPage from './FirstPage1
阅读全文
posted @ 2023-11-25 20:40 子过杨梅
阅读(10)
评论(0)
推荐(0)
LDA预测手写数字集
摘要: import sklearn.datasets as sk from sklearn.discriminant_analysis import LinearDiscriminantAnalysis from sklearn.model_selection import train_test_spli
阅读全文
posted @ 2023-11-25 20:37 子过杨梅
阅读(33)
评论(0)
推荐(0)
vue小练习之记事本
摘要: <div id="Book" style="background-color: cornflowerblue;"> <h2 style="text-align: center;">记账本</h2> <div style="text-align: center;"> 支出:<input type="t
阅读全文
posted @ 2023-11-25 20:34 子过杨梅
阅读(64)
评论(0)
推荐(0)
2023年11月19日
vue十六
摘要: <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
阅读全文
posted @ 2023-11-19 22:35 子过杨梅
阅读(10)
评论(0)
推荐(0)
vue15
摘要: <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>
阅读全文
posted @ 2023-11-19 22:34 子过杨梅
阅读(10)
评论(0)
推荐(0)
2023年11月14日
前后端分离之跨域问题解决(vue解决的)
摘要: 1.什么是跨域 我们访问接口,不论你是前后端相连,还是网上偷偷爬取黄色视频,都无法绕过一个url,我们在小学三年级时学过,一个url的组成是这样的 协议(http、https):表示URL使用的协议。域名(localhost):表示服务器的域名。端口(8080):表示服务器的端口号。路径(/proj
阅读全文
posted @ 2023-11-14 21:16 子过杨梅
阅读(354)
评论(0)
推荐(0)
基于element-ui开发组件自行制作的翻页小组件
摘要: 表格展示区 <el-table :data="dis" style="width: 100%;height: 525px;"> </el-table> 翻页区 <to-page :value="{ page : tableData.length, current_page:current_page
阅读全文
posted @ 2023-11-14 19:45 子过杨梅
阅读(133)
评论(0)
推荐(0)
vue脚手架的data与props
摘要: 1.共同之处: data与props都是数据,都可以存储,并且动态渲染 2.不同之处: data是组件本身的数据,支持自身修改,然而props是外部数据(由父组件传递而来的数据),不支持自身修改,如果想要修改需要this.$emit('父组件监视函数名',希望修改的的值的结果)
阅读全文
posted @ 2023-11-14 19:36 子过杨梅
阅读(58)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
18
下一页
公告