public ActionResult Index() { var musiclist = from i in ms.MusicInfo select i; //LinQ语句,从数据库中提取数据 //MusicInfo是一张表 return View(musiclist.ToList()); //执 ...
分类:
其他好文 时间:
2020-07-05 00:22:27
阅读次数:
69
<el-upload class="upload-demo" ref="upload" :action="uploadURL+'/customer/excel'" //后台接口(接受上传的文件并做后端的逻辑处理) :headers="headers" accept=".xlsx,.xls" // 限 ...
分类:
其他好文 时间:
2020-07-04 17:01:24
阅读次数:
127
action与Mutation类似,Mutation用于同步函数,action用于异步函数。 异步函数需要通过先action再传递到mutations,这样才能被Devtools记录下来。 使用方法 1 组件发布行为 dispatch src\App.vue methods:{ addition() ...
分类:
其他好文 时间:
2020-07-04 01:23:58
阅读次数:
107
<form action="/search" id="search_form"> <input type="text" name="keywords" value="" placeholder="Furniture Handles" class="jhser" /> <span class="ser ...
分类:
其他好文 时间:
2020-07-04 01:13:37
阅读次数:
66
<form action="/search" id="search_form"> <input type="text" name="keywords" value="" placeholder="Furniture Handles" class="jhser" /> <span class="ser ...
分类:
其他好文 时间:
2020-07-03 23:24:48
阅读次数:
57
基本指令 v-cloak v-cloak不需要表达式,它会在Vue实例结束编译时从绑定的HTML元素上移除,经常和CSS的display: none;配合使用: 这时虽然已经加了指令v-cloak,但其实并没有起到任何作用,当网速较慢、Vue.js文件还没加载完时,在页面上会显示{{ message ...
分类:
其他好文 时间:
2020-07-03 21:10:37
阅读次数:
44
终于找到一个能用的demo,待完善 1 # coding=utf-8 2 from pyecharts.charts import Bar 3 from pyecharts import options as opts 4 from pyecharts import faker 5 # from p ...
分类:
其他好文 时间:
2020-07-03 21:06:38
阅读次数:
58
需求说明鼠标移动到小图上时,跟随鼠标可以显示出对应大图当鼠标在小图上移动时,大图也会跟随鼠标移动位置鼠标离开小图时,显示的大图消失 html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>超链接提示图片</ ...
分类:
Web程序 时间:
2020-07-03 19:31:03
阅读次数:
76
表单基础知识点: 1.form必须有action属性,action=表单提交的地址 2.所有需要提交的数据,input必须有name属性 3.input按钮的文字,使用value属性表示 4.input必须放在form标签内才能提交 5.input标签常见类型总结: 文本输入框:type="text ...
分类:
其他好文 时间:
2020-07-03 19:23:34
阅读次数:
62
pip install pyecharts from pyecharts import Bar 报错:ImportError: cannot import name 'Bar' from 'pyecharts' (D:\anaconda\lib\site-packages\pyecharts\__i ...
分类:
其他好文 时间:
2020-07-03 17:34:21
阅读次数:
198