📍 MVC ( Multi View Controller / Model View Controller ) –.
◔ Model view controller is popular architecture pattern used in web development to separate concerns and improve the maintainability of the code.
📍Model – Represent the data and business logic of the application. It’s interact with the database and perform data operation .
📍Controller – The Controller is responsible for most of your business logic . In a web application the controller will handle the request coming into your application .
📍Views – Display the user interface and present the data to the user . It received input from the user and send it to the controller .
◔ It represent the UI of your application .
#mvc #model #views #controller #architecture
ترجمه:
📍 MVC ( کنترلر چند ویو / کنترلر مدل ویو ) —
◔ کنترلر نمای مدل یک الگوی معماری محبوب است که در توسعه وب برای جداسازی نگرانی ها و بهبود قابلیت نگهداری کد استفاده می شود.
📍مدل – نشان دهنده داده ها و منطق تجاری برنامه است. با پایگاه داده تعامل دارد و عملیات داده را انجام می دهد.
📍کنترل کننده – کنترل کننده مسئولیت بیشتر منطق کسب و کار شما را بر عهده دارد. در یک برنامه وب، کنترل کننده درخواستی را که به برنامه شما وارد می شود، رسیدگی می کند.
📍Views – نمایش رابط کاربری و ارائه داده ها به کاربر. ورودی را از کاربر دریافت کرده و به کنترلر ارسال می کند.
◔ این نشان دهنده UI برنامه شما است.
#mvc #model #views #controller #architecture