上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 1.找到主题模板文件two-banner.liquid,通过搜索class名称 ‘banner-2’(查看前端页面得知)确定banner图元素所在位置,如下图所示,展示部分是第一张链接有效的banner模板。 第二张banner元素 两图对比可以看出,图二并没又使用section调用用户配置的链接地 阅读全文
posted @ 2020-08-19 11:46 coder_xds 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 1.修改模板文件 hero.liquid 一开始我的想法是直接在图片<img/>元素加上一个链接,发现不可行,鼠标点击不能跳转,于是定位到元素 <div class="hero-fixed-width hero--adapt" ,给它加上超链接有效。 section.settings.button_ 阅读全文
posted @ 2020-08-12 15:23 coder_xds 阅读(1313) 评论(0) 推荐(0) 编辑
摘要: 1.逻辑 实例来源于<<Redis实战>>这本书。 构建一个投票网站,为这个网站设置一些数值和限制条件:如果一篇文章获得至少200张支持票,那么网站就认为这篇文章是用户喜欢的文章;假如这个网站发布1000篇文章,而其中50篇符合网站对有趣文章的要求,那么网站要把这50篇网站放到首页推荐前100位至少 阅读全文
posted @ 2020-08-07 23:29 coder_xds 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 1.安装python3.6 yum -y install python3.6 2.查看python安装目录下面bin目录中是否已经含有pip whereis python python: /usr/bin/python /usr/bin/python2.7 /usr/bin/python3.6m / 阅读全文
posted @ 2020-08-05 23:42 coder_xds 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 最近在学redis+python,在centos7上装这两个应用,这篇分享redis安装,python安装会在python分类下分享。 参考博文地址:https://www.cnblogs.com/happywish/p/10944253.html https://www.cnblogs.com/l 阅读全文
posted @ 2020-08-05 22:18 coder_xds 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1.函数返回值 >>> def say(): print('itxds') >>> print(say()) itxds None >>> 函数没有显性返回时,默认返回None 2.变量作用域-局部变量 >>> def cal(amount, rate): finalAmount = amount 阅读全文
posted @ 2020-08-02 00:02 coder_xds 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 1.函数文档 >>> def say(name, words): '函数定义阶段, name, words叫形参' '传递进来 name words是实参' print(name + ' say: ' + words) >>> say('itxds', 'hello') itxds say: hel 阅读全文
posted @ 2020-08-01 22:57 coder_xds 阅读(711) 评论(0) 推荐(0) 编辑
摘要: 1.函数的创建和调用 >>> def MyFirstFunction(): print('hello') >>> MyFirstFunction() hello >>> >>> def test(name): print(name) >>> test('itxds') itxds >>> def a 阅读全文
posted @ 2020-08-01 21:39 coder_xds 阅读(1182) 评论(1) 推荐(1) 编辑
摘要: 1.列表、元组和字符串的共同点 都可以通过索引得到每一个元素 默认索引值总是从0开始 可以通过分片的方法得到一个范围内的元素的集合 有很多共同的操作符(重复操作符、拼接操作符、成员关系操作符) 2.创建序列 >>> list('abcdefg') ['a', 'b', 'c', 'd', 'e', 阅读全文
posted @ 2020-08-01 16:52 coder_xds 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.format-位置格式化 >>> '{0},{1},{2}'.format(1,2,3) '1,2,3' 当参数个数小于(Max(位置索引)+1)时,系统报错 >>> '{0},{1},{3}'.format(1,2,3) Traceback (most recent call last): F 阅读全文
posted @ 2020-08-01 16:11 coder_xds 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页