Understanding Web System Behavior

Asked 2 years ago, Updated 2 years ago, 130 views

The web system itself is a beginner.

I am studying a web system using Django.

In a desktop system, when a unique code is entered into an input item, the cursor automatically displays the name associated with the code when it leaves the item, but is it the same for a web system?

Example) When you enter a product code item, the product name is displayed next to the item.

If it's the same, how can I make it happen with Django?

Also, if not, could you tell me the basic flow of the web system?

I looked into various things, but I couldn't find a better solution.

Thank you for your cooperation.

django

2022-09-30 21:37

1 Answers

Is it the same for the web system?

It's the same.

If it's the same, how can I make it happen with Django?

  • Using Ajax
  • When displaying the screen, the code and its associated name are acquired in advance and displayed in JavaScript

or something like that.


2022-09-30 21:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.