vue页面a-model模型: 在控制台对a-model进行修改样式,出现以下代码 一般都会在ant-model-body上进行操作,但是结果不随愿 那是因为,在 a-modal上设置class改变高度,或者直接使用.ant-modal-content。 要注意modal是挂载到网页body的底层, ...
分类:
其他好文 时间:
2021-06-17 17:19:33
阅读次数:
0
构建一个 div , class 随便命名 css 部分 class 名字 { position: relative; // 相对定位是重点 } class名字:before,class名字:after{ position: absolute; content: " "; top: 10px; le ...
分类:
Web程序 时间:
2021-06-17 17:04:05
阅读次数:
0
安装Vue不需要任何特殊的工具,使用下面的代码就可以实现: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia ...
分类:
Web程序 时间:
2021-06-17 17:02:32
阅读次数:
0
打开题目 是一串代码 1 <?php 2 extract($_GET); 3 if (!empty($ac)) 4 { 5 $f = trim(file_get_contents($fn)); 6 if ($ac $f) 7 { 8 echo "<p>This is flag:" ." $flag< ...
分类:
其他好文 时间:
2021-06-17 16:32:24
阅读次数:
0
导出文件显示的名称和预想不符,一般是文件名的无法被识别,需要通过单独编码才行 response["Content-Disposition"] = "attachment; filename*=UTF-8''{}".format(escape_uri_path(filename)) filename为 ...
分类:
其他好文 时间:
2021-06-16 18:23:41
阅读次数:
0
遇到这种报错一般在于下载文件时候,如果Content-Disposition设置文件名有中文会出现此种问题,解决方案如下: 把第二段代码改为第一段,即可~~ 'Content-Disposition': 'attachment; filename=' + encodeURIComponent(fil ...
分类:
Web程序 时间:
2021-06-16 17:52:51
阅读次数:
0
'''模板层 {{ 变量名 }} {{ 逻辑 }} 后端传值 from django.shortcuts import render return render(request, '.html', locals()/{'前端调用变量名': 后端变量名}, content_type='', statu ...
分类:
其他好文 时间:
2021-06-16 17:37:55
阅读次数:
0
###重置数列 AcWing 3661 https://www.acwing.com/problem/content/3664/ 纯暴力1-100 #include <iostream> #include <cstring> #include <algorithm> using namespace ...
分类:
其他好文 时间:
2021-06-13 10:47:34
阅读次数:
0
Visual Studio 的测试管理工具虽然集成了 Google Test 测试框架,但缺少 QtTest 测试框架的支持,所以需要在 Google Test 集成 Qt 框架完成单元测试。 背景介绍 因为代码中不免需要编写单元测试,而且可能一个 VC 项目中带有若干个测试用例,这时难免有运行调试 ...
分类:
其他好文 时间:
2021-06-13 10:34:12
阅读次数:
0
1、 <router-link to="/home">首页</router-link> 2、 this.$router.push({path:'/content/495'}); this.$router.push({name:'news',params:{userId:123}}) 3、命名式路由 ...
分类:
其他好文 时间:
2021-06-13 09:28:10
阅读次数:
0