pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
再重新安装依赖秒过
...
yekong
3年前 (2021-08-21)
喜欢
主界面右侧点击database
输入地址 端口 用户 和 密码 点击test Connectioon测试连接 第一次可能会提示下载依赖组件直接确认就可以了
连接成功后就可以看到管理我们的数据库了
...
yekong
3年前 (2021-08-21)
喜欢
Flask
轻量级
Django
重
其他
Web2py
Bottle
...
yekong
3年前 (2021-08-21)
喜欢
@app.errorhandler(404)
def not_found(error):
app.logger.error(error)
return 'this page not find', 404
...
yekong
3年前 (2021-08-21)
喜欢
使用debug需要先开启debug
from flask import Flask
from api import route_api
app = Flask(__name__)
app.register_blueprint(route_api, url_prefix=&quo...
yekong
3年前 (2021-08-21)
喜欢
对数字的定义只有一个很笼统的number来表示
既能表示整数、也能表示浮点数,甚至也可以表示正负数
例如:1,5.3-10
function add(n1: number, n2: number) {
return n1 + n2
}
console.log(add(1...
yekong
3年前 (2021-08-21)
喜欢
app.run(debug=True)
from flask import Flask
from api import route_api
app = Flask(__name__)
app.register_blueprint(route_api, url_prefix=...
yekong
3年前 (2021-08-21)
喜欢
基础类型
boolean
string
number
array
null
undefind
object
tuple
enum
void
never
any
高级类型
union 组合类型
Nullablle可空类型
Literal 预定义类型
...
yekong
3年前 (2021-08-21)
喜欢
gem install compass
如果安装不了,更换源试试
先移出
gem sources --remove https://rubygems.org/
再添加
gem source -a http://gems.ruby-china.com
然后再重新运行,就可以愉...
yekong
3年前 (2021-08-21)
喜欢
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directo...
yekong
3年前 (2021-08-21)
喜欢