创建文件api
from flask import Blueprint
route_api = Blueprint('api_page', __name__)
@route_api.route('/api1')
def index():
...
yekong
3年前 (2021-08-20)
喜欢
pip3 install -i https://mirrors.aliyun.com/pypi/simple flask
pip3 install -i https://mirrors.aliyun.com/pypi/simple 包名
...
yekong
3年前 (2021-08-20)
喜欢
from flask import Flask
app = Flask(__name__)
@app.route('/')
def helloword():
return 'Hello Word'
if __name__ == &...
yekong
3年前 (2021-08-20)
喜欢
pip3 install Flask
或者使用阿里云的源进行安装
pip3 install -i https://mirrors.aliyun.com/pypi/simple flask
...
yekong
3年前 (2021-08-20)
喜欢
Consider using the --user option or check the permissions.
ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permissi...
yekong
3年前 (2021-08-20)
喜欢
js
import AMapLoader from '@amap/amap-jsapi-loader';
created() {
var that = this;
AMapLoader.load({
...
yekong
3年前 (2021-08-20)
喜欢
真假
处理判断逻辑
let isTrue:boolean;
...
yekong
3年前 (2021-08-20)
喜欢
"hello"
'hello'
`hello`
反引号:``可以创建一个字符串模版
let hello: string = "hello word"
let str = `my name ${hello}`
console...
yekong
3年前 (2021-08-20)
喜欢
var number1=1;
let number2=2;
const number3=3;
少用var 多用let
...
yekong
3年前 (2021-08-20)
喜欢
ES5 ES3 支持目前所有主流浏览器
没有ES4
ES6=ES2015目前浏览器不支持,未来会支持。
ES2016 就是 (ES7)
ES2017 就是 (ES8)
...
yekong
3年前 (2021-08-20)
喜欢