CSS Ribbon

Reproducing the GitHub Ribbon in CSS

05 2018 档案

前端数据修改的两种方式
摘要:1.form(页面会刷新,把页面数据提交到后台) 后端可以验证 2.AJAX(AJAX不会刷新页面,如果后台不提交验证,可以绕过浏览器,js不触发,后端不能完成验证,有漏洞【脚本攻击】) 前端验证可以减少服务器的压力,后端验证可以满足数据安全和数据格式合法性。 3.Django的form是和数据库的 阅读全文

posted @ 2018-05-28 21:26 pandaboy1123 阅读(1972) 评论(0) 推荐(0)

crm需求分析步骤
摘要:# CRM开发顺序# 需求分析# 思维导图# 业务场景分析#-------------------------------------## 原型图(Demo)# Axure#-------------------------------------## 开发工具选型:# 1.Pyhton# 2.Django# 3.mysql# 4.jquery# 5.bootstrap# 6.linux# 7.n... 阅读全文

posted @ 2018-05-20 21:28 pandaboy1123 阅读(663) 评论(0) 推荐(0)

codecademy练习记录--Learn Python(70%)
摘要:############################################################################### codecademy python 5.5# Define a function factorial that takes an integ 阅读全文

posted @ 2018-05-18 11:29 pandaboy1123 阅读(431) 评论(0) 推荐(0)

Day75
摘要:import requests # requests.get(url='http://127.0.0.1:8000/api/asset/?K1=123') # requests.get(url='http://127.0.0.1:8000/api/asset/',params={'k1':'v1'} 阅读全文

posted @ 2018-05-15 17:01 pandaboy1123 阅读(130) 评论(0) 推荐(0)

Day73-CMDB(资产管理采集)的三种实现方式
摘要:# 采集数据 import subprocess import requests ret = subprocess.getoutput('ipconfig') # print(ret) # 正则处理获取想要的数据 data_dict = { 'nic':{}, 'disk':{}, 'mem':{} 阅读全文

posted @ 2018-05-12 13:11 pandaboy1123 阅读(218) 评论(0) 推荐(0)

JS实现HTML打印机效果
摘要:5月最近在学Django,所以所有的Demo都没有PO出去 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script type="text/javascript"></script> <title>打印机效果</ti 阅读全文

posted @ 2018-05-10 17:11 pandaboy1123 阅读(1146) 评论(0) 推荐(0)

导航