摘要:
阅读全文
摘要:
1.webpack 打包成一个Js文件 2.vuex 组件通信, vue-router页面跳转 ,axios http请求 3.ES6js依赖的环境, babel ES6转ES5,兼容旧浏览器 阅读全文
摘要:
1. c# NuGet程序控制台 Install-Package Snowflake.Net 2.python pip install requests pysnowflake snowflake_start_server 阅读全文
摘要:
1.pypi install -i https://pypi.douban.com/simple pypiwin32 scrapy crawl jobbole 2. ArticleSpider/ArticleSpider/spiders/jobbole.py中, def pass(self, res 阅读全文
摘要:
1. mkvirtualenv --python==C:\Users\zhengsheng\AppData\Local\Programs\Python\Python36-32\python.exe article_spider 2.pip install -i https://pypi.douban 阅读全文
摘要:
1. 安装Python3.6 添加到WORKON_HOME系统变量 2.pip install virtualenvwrapper 3.mkvirtualenv project1 4.pip install -i https://pypi.douban.com/simple django==1.11 阅读全文
摘要:
DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': '', 'USER': 'sa', 'PASSWORD': '', 'HOST': '', 'OPTIONS': { 'driver':'SQL Server Nati 阅读全文
摘要:
1. 复制3.6可用的xadmin到extra_apps中\ 2. pip install -i https://pypi.douban.com/simple django-crispy-forms django-import-export django-reversion django-formt 阅读全文
摘要:
1. 将DjangoUEditor拷贝到extra_apps中, 添加 DjangoUEditor, users, user_operation, goods, trade等模块到settings.py Installed_app中 2.商品model中需要注意的 (1)help_text 为以后生 阅读全文
摘要:
1. Tools Run manage.py Task startapp trade 交易 startapp user_operation 用户操作 startapp goods 商品 2. users app 中编写models.py UserProfile用户类继承自AbstractUser, 阅读全文