子钦加油

扩大
缩小
上一页 1 2 3 4 5 6 ··· 32 下一页

2021年1月29日

uni-app的三元表达式

摘要: style:有个括号要注意web <text class="title" :style="'filter:grayscale('+(funding>'0'?'100%':'0')+')'" style="color:red;">{{title}}</text> class:中括号要注意svg <i 阅读全文

posted @ 2021-01-29 10:00 子钦加油 阅读(2701) 评论(0) 推荐(0) 编辑

uni-app的三元表达式

摘要: <swiper class="swiper_background" :indicator-dots="indicatorDotss" :autoplay="autoplays" :circular="circular" :vertical="vertical" :interval="interval 阅读全文

posted @ 2021-01-29 09:43 子钦加油 阅读(268) 评论(0) 推荐(0) 编辑

uni-app的三元表达式

摘要: <swiper class="swiper_background" :indicator-dots="indicatorDotss" :autoplay="autoplays" :circular="circular" :vertical="vertical" :interval="interval 阅读全文

posted @ 2021-01-29 09:24 子钦加油 阅读(192) 评论(0) 推荐(0) 编辑

2021年1月26日

Module Error (from ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templ

摘要: 做uni-app的时候碰到了这个问题, Module Error (from ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templ 检查下是不是你的view 没有关闭!! 或者 最外层出现两 阅读全文

posted @ 2021-01-26 13:42 子钦加油 阅读(2516) 评论(0) 推荐(0) 编辑

2021年1月11日

小米手机通过USB连接MAC电脑

摘要: 1、手机端拿到“开发者权限”后,打开“USB调试”开关并将USB的用途设置为传输文件,各机型不同请自行百度。 2、如果你已经安装过homebrew可以直接执行如下命令安装 安卓插件 执行命令:brew cask install android-file-transfer 安装Android文件传输, 阅读全文

posted @ 2021-01-11 15:38 子钦加油 阅读(10640) 评论(0) 推荐(0) 编辑

2020年12月15日

基于python中jieba包的中文分词中详细使用

摘要: 基于python中jieba包的中文分词中详细使用(一) 01.前言 之前的文章中也是用过一些jieba分词但是基本上都是处于皮毛,现在就现有的python环境中对其官方文档做一些自己的理解以及具体的介绍。本文主要内容也是从官网文档中获取。 02.jieba的介绍 02.1 What “jieba” 阅读全文

posted @ 2020-12-15 21:27 子钦加油 阅读(780) 评论(0) 推荐(0) 编辑

Django使用or条件查询和各种查询关键字

摘要: Django使用or条件查询: from django.db.models import Q User.objects.filter(Q(state=0) | Q(state=1)) Django各种条件查询关键字: __exact 精确等于 like ‘aaa’__iexact 精确等于 忽略大小 阅读全文

posted @ 2020-12-15 21:17 子钦加油 阅读(513) 评论(0) 推荐(0) 编辑

2020年9月30日

Pycharm打印 大数据文件显示不全的解决方法

摘要: Pycharm用Python打开发现提示文件过大,打印在控制台也还是显示不全,如何解决呢? 试试下面方法吧!!! 完美解决!!!如果你的不能解决建议再次检查下上述步骤是否正确操作 阅读全文

posted @ 2020-09-30 10:57 子钦加油 阅读(903) 评论(0) 推荐(0) 编辑

2020年8月23日

忘记宝塔面板密码的解决方案

摘要: 忘记宝塔密码,可以通过以下命令重置密码 cd /www/server/panel && python tools.py panel testpasswd 如果提示多次登录失败,暂时禁止登录 请输入以下命令 清除登录限制 rm -f /www/server/panel/data/*.login 新装面 阅读全文

posted @ 2020-08-23 21:42 子钦加油 阅读(702) 评论(0) 推荐(0) 编辑

2020年8月19日

mac下编写shell脚本并执行

摘要: 1、写好自己的 脚本,比如test.sh 2、打开终端 执行,方法一: 输入命令 ./test.sh , 方法二:直接把 test.sh 拖入到终端里面。 注意事项: 如果 没有成功报出问题:: Permission denied。就是没有权限。 解决办法: 修改该文件test.sh 的权限 :使用 阅读全文

posted @ 2020-08-19 10:35 子钦加油 阅读(2077) 评论(0) 推荐(0) 编辑

2020年8月11日

迁移服务器遇到django-crontab不执行定时任务问题

摘要: django-crontab实现定时任务 1 django-crontab安装 django-crontab安装:pip install django-crontab django-crontab加入:只需要将django-crontab加入到settings.py的INSTALLED_APPS即可 阅读全文

posted @ 2020-08-11 09:17 子钦加油 阅读(1135) 评论(0) 推荐(0) 编辑

2020年7月31日

纯CSS3+DIV实现小三角形边框

摘要: html代码是这样的 <div class="arrow-up"> <!--向上的三角--> </div> <div class="arrow-down"> <!--向下的三角--> </div> <div class="arrow-left"> <!--向左的三角--> </div> <div c 阅读全文

posted @ 2020-07-31 23:18 子钦加油 阅读(1304) 评论(0) 推荐(0) 编辑

2020年7月29日

mysql密码错误-ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwor:yes)

摘要: 一般这个错误是由密码错误引起,解决的办法自然就是重置密码。 假设我们使用的是root账户。 1.重置密码的第一步就是跳过MySQL的密码认证过程,方法如下: root 00:22:26~$ vim /etc/my.cnf (注:windows下修改的是my.ini) 2.在文档内搜索mysqld定位 阅读全文

posted @ 2020-07-29 11:41 子钦加油 阅读(1569) 评论(0) 推荐(0) 编辑

收货地址下边的平行四边形彩色线条

摘要: 以小程序为例 <view class="xiantiao"> <view class="city"></view> <view class="city"></view> <view class="city"></view> <view class="city"></view> <view class 阅读全文

posted @ 2020-07-29 00:29 子钦加油 阅读(439) 评论(0) 推荐(0) 编辑

2020年7月27日

小程序导航栏全屏navigationStyle自定义导航栏,小程序轮播图导航栏

摘要: <!-- swiper --> <view class="page-section page-section-spacing swiper"> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{ 阅读全文

posted @ 2020-07-27 23:22 子钦加油 阅读(564) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 32 下一页

导航

返回顶部