上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页
摘要: 手机端运行会直接调起电话按钮,代码如下: https://blog.csdn.net/ONLYSRY/article/details/127221380 <view class="text2_button" @click="freeTell"> <text>4007-000-000</text></ 阅读全文
posted @ 2022-10-30 21:59 洪豆豆的记录 阅读(5271) 评论(0) 推荐(0) 编辑
摘要: Django中model_to_dict使用 https://blog.csdn.net/yuanlaidewo000/article/details/84062774 from django.forms.models import model_to_dictdi = model_to_dict(o 阅读全文
posted @ 2022-10-30 11:36 洪豆豆的记录 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 笔记:django get方法的异常 ...if num == 1: return clone._result_cache[0]if not num: raise self.model.DoesNotExist( "%s matching query does not exist." % self. 阅读全文
posted @ 2022-10-30 10:40 洪豆豆的记录 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Uni app token设置 https://www.jianshu.com/p/d617da66d144 onLaunch: function() { console.log('App Launch'); var token = get_token(); if (token){ uni.swit 阅读全文
posted @ 2022-10-29 18:54 洪豆豆的记录 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: 细品Django的view秘密 https://zhuanlan.zhihu.com/p/386247778 阅读全文
posted @ 2022-10-27 21:27 洪豆豆的记录 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_48082548/article/details/125172131 阅读全文
posted @ 2022-10-27 21:15 洪豆豆的记录 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Python web模版Django-15 设置urls.py中的urlpatterns,用path方法时不能用正则表达式 https://blog.csdn.net/Pansc2004/article/details/80495723 urlpatterns = [ re_path('delete 阅读全文
posted @ 2022-10-27 21:14 洪豆豆的记录 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 查看被占用的快捷键(Windows Hotkey Explorer) https://www.onlinedown.net/soft/1153197.htm PC Hunter是一个Windows系统信息查看软件,同时也是一个手工杀毒辅助软件。 http://www.xuetr.com/?p=191 阅读全文
posted @ 2022-10-24 23:36 洪豆豆的记录 阅读(139) 评论(0) 推荐(0) 编辑
摘要: JSON常见用法:json.load()、json.loads()、json.dump()、json.dumps() 常用的方法 json.load()从json文件中读取数据 json.loads()将str类型的数据转换为dict类型 json.dumps()将dict类型的数据转成str js 阅读全文
posted @ 2022-10-20 11:34 洪豆豆的记录 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Python垃圾回收机制 引用计数 引用计数-1的条件 对象被显式销毁,如 del a 。 变量重新赋予新的对象,例如 a=0 。 对象离开它的作用域,如 func 函数执行完毕时, func 函数中的局部变量(全局变量不会)。 对象所在的容器被销毁,或从容器中删除对象。 标记-清除 标记阶段。将所 阅读全文
posted @ 2022-10-20 11:26 洪豆豆的记录 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页