我使用的主题是yilia,在此以此为例。
第一步: 编写打赏模块
主题文件 layout\_partial 下新建 donate.ejs , 内容如下 :
1 | <! -- 添加捐赠图标 --> |
我使用的主题是yilia,在此以此为例。
主题文件 layout\_partial 下新建 donate.ejs , 内容如下 :
1 | <! -- 添加捐赠图标 --> |
创建data,log目录
db: C: log: C:data.log
创建windows服务
mongod –logpath C:.log –logappend –dbpath C:–directoryperdb –serviceName MongoDB –install
启动 net start MongoDB
Linux基础: http://linuxtools-rst.readthedocs.org/zh_CN/latest/index.html
git基础: http://www.bootcss.com/p/git-guide/ http://streamers.github.io/blog/20160307/git-common-command.html
markdown基础: https://gitcafe.com/riku/Markdown-Syntax-CN/blob/master/syntax.md
http://www.appinn.com/markdown/
时间过的真快呀,大学浑浑噩噩度过了四年,没学到什么反而感觉身心俱疲,不该不该啊。惧于提前走向社会,而选择了读研的道路也不知道最终结果是好是坏,还有三年得熬呀。不过,凡事也得往好的地方想嘛。大学尚有诸多遗憾没完成,甚是遗憾,以后可没这么闲啊。趁着现在也不想做毕设,慢慢来去做啦。
阅读全文…首先同一采用utf-8
1.数据库属性改为utf-8 必要时更改mysql的配置文件: default-character-set=utf8 character-set-server=utf8
2.连接数据库:jdbc:mysql://localhost:3306/db_bug?useUnicode=true&characterEncoding=utf8
3.request中文乱码: get请求的编码方式为:ISO-8859-1 doGet方法:例子:String spotName=new String(request.getParameter(“spotName”).getBytes(“ISO-8859-1”),“UTF-8”); doPost方法:request.setCharacterEncoding(“UTF-8”);
4.response中文乱码:response.setCharacterEncoding(“UTF-8”);
阅读全文…#Usage
You can use the example by doing step by step below:
1 | $ git clone https://github.com/wqs123/my_blog.git |
Then you will see 1
2
3
4
5
6
7Performing system checks...
System check identified no issues (0 silenced).
March 18, 2016 - 19:40:42
Django version 1.9, using settings 'my_blog.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
Now open browser and input : http://127.0.0.1:8000/article/ ,you will see the main page like below: and http://127.0.0.1:8000/admin/ you can see the admin page:
阅读全文…