上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页
摘要: 在flutter中引用图片,最好参考flutter实战这本书,网页地址:https://book.flutterchina.club/chapter3/img_and_icon.html 我在使用过程中犯下的错误: 第一个错误是引用图片地址没有加双引号,第二个错误是引用图片地址没有加路径images 阅读全文
posted @ 2019-07-04 20:56 braveheart007 阅读(155) 评论(0) 推荐(0) 编辑
摘要: RESTFUL API 视频地址:https://www.bilibili.com/video/av22964634?from=search&seid=7007330453806066473 引用地址:https://www.cnblogs.com/rgcLOVEyaya/p/RGC_LOVE_YA 阅读全文
posted @ 2019-07-02 16:51 braveheart007 阅读(700) 评论(0) 推荐(0) 编辑
摘要: 败给了python的elif:是elif,elif,elif,而不是elseif:if 判断条件1: 执行语句1…… elif 判断条件2: 执行语句2…… elif 判断条件3: 执行语句3…… else: 执行语句4…… 阅读全文
posted @ 2019-07-01 16:47 braveheart007 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 一个视图函数可以对应多个修饰器: @app.route('/')@app.route('/index.html')def index(): return render_template('index.html') 备注: 服务器端APP需要使用路由地址,如何获得呢? @app.route('/pos 阅读全文
posted @ 2019-07-01 00:11 braveheart007 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 文章来源:https://blog.csdn.net/yuzw_zw/article/details/83154633 一、安装Apache# yum install -y httpd httpd-devel # systemctl start httpd.service # 启动# systemc 阅读全文
posted @ 2019-06-30 16:37 braveheart007 阅读(238) 评论(0) 推荐(0) 编辑
摘要: python文件命名不可以与包的名字相同,否则会导致包无法引用!切记! 阅读全文
posted @ 2019-06-29 00:24 braveheart007 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 引用地址:https://www.cnblogs.com/jiangfengtomhuo/p/8243001.html git配置SSH Git是分布式的代码管理工具,远程的代码管理是基于SSH的,所以要使用远程的Git则需要SSH的配置。github的SSH配置如下:一 、设置Git的user n 阅读全文
posted @ 2019-06-28 01:26 braveheart007 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 应用自:https://www.cnblogs.com/JahanGu/p/7452527.html 1.查看是否已经安装Python CentOS 7.2 默认安装了python2.7.5 因为一些命令要用它比如yum 它使用的是python2.7.5。 使用 python -V 命令查看一下是否 阅读全文
posted @ 2019-06-23 16:35 braveheart007 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 先预装一个上传下载用的工具: yum install -y lrzsz rz上传;sz下载; 安装apache: yum install httpd -y 将Apache服务添加到 开机自启中: 阅读全文
posted @ 2019-06-23 14:00 braveheart007 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 安装: pip install SQLAlchemy 测试: >>>import sqlalchemy >>>sqlalchemy.__version__ 1.1.9 mysqlalchemy中的数据类型: Integer Float Boolean ForeignKey Date/DataTime 阅读全文
posted @ 2019-06-23 09:13 braveheart007 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页