首先需要引用alipayer js和css 页面使用的引用方式不同 <template> <div :id="playerId"style="width:100%; height:100%;"> </div></template> <script> export default { name: 'R ...
分类:
其他好文 时间:
2021-05-24 11:00:02
阅读次数:
0
we're going to dive deep into a more complex example in which we combine mapped types, key remapping, template literal types, and indexed access types ...
分类:
移动开发 时间:
2021-05-24 09:32:51
阅读次数:
0
Vue页面template <template> <div> <canvas style="width: 80%!important;height: auto!important;" id="canvas"></canvas> <br/>{{charId}} </div> </template> V ...
分类:
Web程序 时间:
2021-05-24 09:24:28
阅读次数:
0
对近期的数据库配置进行一个记录,方便我以后查阅。 我的Django项目配备的是Mysql的数据库,平时使用的工具是VS Code,推荐安装Mysql插件,效果不错: 下面是在项目的setting.py中配置的Mysql连接数据: DATABASES = { 'default': { 'ENGINE' ...
分类:
数据库 时间:
2021-05-24 09:06:47
阅读次数:
0
1.查看源码 from flask import Flask,redirect , render_template app = Flask( __name__) @app.route( '/ hello/<path:user> ' ) def hello_name(user) : message = ...
分类:
其他好文 时间:
2021-05-24 07:37:22
阅读次数:
0
import pandas as pd import pymysql def import_data_from_csv(): # 从csv文件导入数据 # engine="python"可以避免文件路径中有中文, encoding="utf_8_sig"可以使读取的内容中有中文 df = pd.re ...
分类:
其他好文 时间:
2021-05-24 07:01:05
阅读次数:
0
docker-py是Docker SDK for Python。docker-py主要利用了requests,使用http/socket协议连接本地的docker engine进行操作。对 docker 感兴趣,苦于工作中只用到 http 协议的同学,都建议阅读一下本文。话不多数,一起了解docke ...
分类:
其他好文 时间:
2021-05-24 06:20:47
阅读次数:
0
{{}}作为html模板,用于输出对象属性和函数返回值,其中内容可以是: 变量 三元表达式 函数 <template> <div> <!--变量--> <div>{{title}}</div> <!--三元表达式--> <div>{{true?'正确':'错误'}}</div> <!--函数--> ...
分类:
其他好文 时间:
2021-05-24 05:59:31
阅读次数:
0
目的 将一些重复的代码交给IDEA生成,我们只需要关注那些可变的参数。 步骤 进入以下选项 File → Settings → Editor → Live Templates 2. 3.设置一个组名 MyTemplates 在 MyTemplates中新增一个代码模板 效果展示 默认为 Tab键代码 ...
分类:
其他好文 时间:
2021-05-24 05:58:31
阅读次数:
0
Thymeleaf官网: https://www.thymeleaf.org/ 一 、Thymeleaf是什么? Thymeleaf是一个流行的模板引擎,该模板引擎采用Java语言开发,模板引擎是一个技术名词,是跨领域跨平台的概念,在Java语言体系下有模板引擎,在C#、PHP语言体系下也有模板引擎 ...
分类:
其他好文 时间:
2021-05-24 05:36:05
阅读次数:
0