Common problems of project development

We count some of the problems that we often encounter during project development, and only talk about some basic static webpage problems;

1. More analysis and consideration.

Don’t just write directly once you get the psd diagram. This is a common mistake many novices make. The more detailed the analysis at the beginning, the faster you write and the fewer errors. If you don’t analyze it well, you may end up writing more and more reluctantly. , Even to overthrow and start over. The analysis is mainly to first consider how to layout this page, and how to write each module. If you have a number in your mind, write it quickly.

2. More communication within the group

There must be more exchanges within the group, and if you don’t understand, you must ask if you don’t hide it until it finally bursts out. In addition, once there are any changes to the development plan, it must be brought up in the regular meeting and ensure that everyone knows. Don't happen to the situation that the scheduled development task has been cut, and the team members are still doing it until the end.

3. Allow time for changes

If there is enough time, try to set aside time. Because many situations may prevent you from delivering the task, don’t push yourself to a desperate situation

4. Careful and patient

The programmer's care is very important. This is especially true in the front-end. UI design drawings will inevitably be dazzled after a long time. Often there are more or less things, and only when others point out, I am surprised that I have made a mistake. As for patience, not to mention that it is impossible for the code to fail to think of bugs. We have to spend a lot of time to fix bugs, so we must be patient. After all, who didn't change the code to change the mentality to explode.

5. Naming issues

General projects will have naming requirements and specifications, please be sure to comply, otherwise it will be extremely prone to naming pollution problems during integration. The general requirement for naming is to know what the name means.

6. Communicate with UI more

Many times the unreasonable part of the design drawing is really the negligence of the UI. At this time, when you feel something is wrong, you must ask the UI to understand, otherwise this is your problem. The most important thing is not to follow your own feelings, you are a programmer and you are not a designer. You are not a professional designer, so you can make a hammer.

7. Write statically if you can write statically

Many of the effects that can be practiced with css on the page are written in css. It is not that you can’t use js but css can be achieved. It is better to use css matters, such as mouse passing effects, js can also write onmousemove, but :hover is also OK, Simpler, so write statically if you can write statically.

Summary The most important thing in front-end development is patience, and no one pixel is missing. So it's quite difficult, come on.

Guess you like

Origin blog.csdn.net/weixin_48549175/article/details/109898991