1.将配置信息写在appsetting.json里面 2.创建一个类,包含配置文件的属性 public class AppSettingModel { public string CC_URL { get; set; } } 3.startup里面,将配置文件和类绑定 4.使用 ...
分类:
Web程序 时间:
2021-01-14 11:01:03
阅读次数:
0
参考资料:ASP.NET 上传文件到共享文件夹 创建共享文件夹参考资料:https://www.cnblogs.com/dansediao/p/5712657.html 一、配置上传文件相关参数并读取参数 1.配置appsettings.json { "FileUploadInfo": { "Upl ...
分类:
Web程序 时间:
2021-01-14 10:42:24
阅读次数:
0
uni-app对接微信小程序直播 1.登录微信小程序后台-点击>设置->第三方设置->添加直播插件 2.添加直播组件后->点击<详情> 记录这两个参数直播插件的appid和最新版本号 3. 打开项目,找到manifest.json这个文件 代码: "plugins" : { "live-player ...
分类:
微信 时间:
2021-01-14 10:30:04
阅读次数:
0
Docker 换国内源 先创建daemon.json文件,系统默认是没有这个文件。 sudo vim /etc/docker/daemon.json 复制代码 编辑daemon.json,填入以下内容。 { "registry-mirrors": [ "https://kfwkfulq.mirror ...
分类:
其他好文 时间:
2021-01-13 11:24:55
阅读次数:
0
import json from pptx import Presentation from pptx.enum.shapes import MSO_SHAPE_TYPE def ppt_catch_format_text(filename): """ 抓取PPT的内容,按段落返回 其中 filen ...
分类:
编程语言 时间:
2021-01-13 11:11:20
阅读次数:
0
SpringBoot+MyBatis+PostgreSQL配置 1.前置依赖配置 首先我们需要引入maven的依赖包 连接PostgreSQL时需要手动指定schema位置,否则,连接上的database会默认使用public这个内置的schema,导致在查询别的schema下的表时,会报类似如下的 ...
分类:
数据库 时间:
2021-01-13 11:00:30
阅读次数:
0
1.添加配置文件 proxy.conf.json { "/api": { "target": "http://localhost:1111", "secure": false, "changeOrigin": true, "logLevel": "debug" } } 在 angular.json ...
分类:
其他好文 时间:
2021-01-13 10:41:41
阅读次数:
0
Requests库是用Python编写的,基于urllib,采用Apache2 Licensed开源协议的HTTP库 更详细的介绍,请参考https://zhuanlan.zhihu.com/p/34199974下面讲解get方法和post方法的封装和调用import requests,jsoncl ...
分类:
其他好文 时间:
2021-01-13 10:35:27
阅读次数:
0
1 # %% NIPS 2020 论文信息下载 2 import json 3 import os 4 import re 5 6 import pandas as pd 7 import requests 8 import tqdm 9 from bs4 import BeautifulSoup ...
分类:
其他好文 时间:
2021-01-12 10:46:54
阅读次数:
0
//方法1let persion = { name:'json', age:18, adress:'ftq' } for( a[a.length] in persion){console.log(a)} // ["name"]["name", "age"]["name", "age", "adres ...
分类:
其他好文 时间:
2021-01-11 11:11:00
阅读次数:
0