Blogger Information
Blog 59
fans 0
comment 1
visits 48389
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
企业级项目开发与学习的经验之谈——2018年5月11日作业
白猫警长的博客
Original
695 people have browsed it
  1. 企业级项目开发页面一般比较多,逻辑性较强


  2. 页面与页面之间不在是各自为政,而是相互关联(一般通过a标签的href联系起来)


  3. 数据安全是重点考虑对象($_GET、$_POST);

    GET方法:

    通过GET方法从表单发送的信息对所有人都是可见的,都会显示在URL地址中,所以如果发送敏感信息一定不要用GET方法来传送数据,比如密码。

    POST方法:

    POST方法对敏感信息有加密处理,如果涉及到用户信息及敏感信息可以使用POST方法来传送数据。


  4. 二级验证:前端验证(用户体验)、后端验证(安全)

    前端验证:前端的验证主要是为了用户体验,通过JQ和Ajax来降低服务器的压力。

    后端验证:保护数据的安全性,不容易被他人所修改。


  5. 用户体验(页面交互、操作等待时间)

  6. 性能问题(CPU占用指标、内存占用指标、网络带宽)

  7. 代码可读性:命名规范、注释、代码缩进、代码长度(如果一个方法【函数】代码长度超过50行)

  8. 代码性能:时间复杂度(程序在运行时所消耗的时间),空间复杂度(程序在运行时所占用的内存)



Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post