摘要: url(r'^rbac/', include(('rbac.urls',namespace='rbac')), 修改为 url(r'^rbac/', include(('rbac.urls','rbac'),namespace='rbac')), 阅读全文
posted @ 2021-07-04 00:37 成强 阅读(47) 评论(0) 推荐(0) 编辑
摘要: nps内网穿透开机自启动设置 .bat文件 @echo off ::去除黑窗口 if "%1" == "h" goto begin mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit :b 阅读全文
posted @ 2021-07-02 14:25 成强 阅读(4292) 评论(3) 推荐(0) 编辑
摘要: 解决办法: 将第十一行的代码改为: herobook=models.ForeignKey('BookInfo',on_delete=models.CASCADE,) 即在外键值的后面加上 on_delete=models.CASCADE 原因: 在django2.0后,定义外键和一对一关系的时候需要 阅读全文
posted @ 2021-07-01 09:27 成强 阅读(33) 评论(0) 推荐(0) 编辑
摘要: p{ word-wrap: break-word; word-break: break-all; } 阅读全文
posted @ 2021-06-28 22:49 成强 阅读(328) 评论(0) 推荐(0) 编辑
摘要: navbar-static-bottom这个类可以使其固定在网页底部,并且不随网页滚动 <footer class="navbar-static-bottom"> testteset </footer> 阅读全文
posted @ 2021-06-28 19:09 成强 阅读(622) 评论(0) 推荐(0) 编辑
摘要: <header class="bs-docs-nav navbar navbar-static-top" id="top"></header> <a href="#top" class="back-to-top"> Back to top </a> 阅读全文
posted @ 2021-06-28 19:00 成强 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 在21行的extraPlugins里还添加了 'uploadimage',这个插件的作用是允许用户直接在编辑器里粘贴(ctrl + v)图片 CKEDITOR_CONFIGS = { # 配置名是default时,django-ckeditor默认使用这个配置 'default': { # 使用简体 阅读全文
posted @ 2021-06-28 16:41 成强 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 在blogs_with_type.html中首先要写明,扩展的原始模板文件: {% extends 'blog/blog_list.html' %} 在原始文件blog_list.html加入的块级元素: {% block blog_list_title %} 分类:{{ blog_type.typ 阅读全文
posted @ 2021-06-28 15:13 成强 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 这样就OK了搞定,我们只要加上样式: pre { white-space: pre-wrap; word-wrap: break-word; } 就能使 阅读全文
posted @ 2021-06-26 22:31 成强 阅读(144) 评论(0) 推荐(0) 编辑
摘要: [Python开发技巧]·解决Django render() got an unexpected keyword argument 'renderer'问题 F:\course\myblog\myblogvenv\lib\site-packages\django\forms\boundfield.p 阅读全文
posted @ 2021-06-20 10:59 成强 阅读(333) 评论(0) 推荐(0) 编辑