码迷,mamicode.com
首页 >  
搜索关键字:route add    ( 40374个结果
Sql Service Code First转化为 Pgsql CodeFirst
ef6转化为efcore 1.ef6 sql service先修改为 ef6 pgsql 1.1 安装 EntityFramework6.Npgsql 包 1.2 修改config 文件中的连接串 新建一个pagsql的数据库 JustTest <connectionStrings> <add na ...
分类:数据库   时间:2020-11-27 11:43:09    阅读次数:13
PyCharm远程开发和调试
配置远程Python解释器 选择File-->Settings-->Project: xxxx-->Project Interpreter, (xxxx是项目根目录), 然后在右边, 点击小齿轮设置, 点击"Add Remote", 勾选SSH Credentials, 配置相关信息: Host: ...
分类:其他好文   时间:2020-11-27 11:35:08    阅读次数:8
python 自定义类写法
# 模板1 class LayerChart(TopLevelMixin, _EncodingMixin, core.TopLevelLayerSpec): def __init__(self, data=Undefined, layer=(), **kwargs): for spec in lay ...
分类:编程语言   时间:2020-11-27 11:30:17    阅读次数:11
对于闭包的自我理解
闭包是什么? <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div> <button id="father" onclick="add()">计数 ...
分类:其他好文   时间:2020-11-27 11:18:25    阅读次数:9
小相册
代码如下: <style> *{ margin: 0; padding: 0; } html,body{ width: 100%; height: 100%; } body{ background:#1e1e1f; overflow:hidden; } .box{ width: 100%; heig ...
分类:其他好文   时间:2020-11-27 10:58:16    阅读次数:6
运维 | kali2020.3配置docker和基本命令
跟着网上的步骤走就好了,这里就记录一个过程: 先加个docker的源 1 curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add - 2 3 echo 'deb htt ...
分类:其他好文   时间:2020-11-27 10:55:57    阅读次数:5
Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes conta ...
分类:其他好文   时间:2020-11-26 15:14:07    阅读次数:5
BigDecimal 加减乘除
加法 add() 减法subtract() 乘法divide() 除法 divide() 绝对值 ads() ...
分类:其他好文   时间:2020-11-26 15:07:37    阅读次数:11
Flask Restful api
Flask是一个基于Python开发的微型web框架 使用Flask实现简单的restful api 安装 pip install flask eg: from flask import Flask app = Flask(__name__) @app.route('/') def hello(): ...
分类:Windows程序   时间:2020-11-26 15:03:17    阅读次数:11
oracle查询sql 执行历史和计算机
select * from v$sql select row_number() over (order by a.username, a.client_info, a.terminal) as id , a.username, a.sid, a.serial# as serial_id, a.cli ...
分类:数据库   时间:2020-11-26 14:51:52    阅读次数:9
40374条   上一页 1 ... 76 77 78 79 80 ... 4038 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!