Home PHP Framework Laravel How to use Laravel to implement separate deployment of front-end and back-end

How to use Laravel to implement separate deployment of front-end and back-end

Apr 23, 2023 am 09:17 AM

In today's Internet world, software services with Web applications as the core are becoming more and more popular. Among them, the Laravel framework, as an excellent development framework for PHP language, not only has efficient performance, but also has a series of advantages such as friendly development experience, rich open source community, powerful ORM and migration system. In Laravel's back-end development, the development model of front-end and back-end separation has gradually become popular recently. This article will introduce how to use Laravel to achieve separate deployment of front-end and back-end.

1. What is front-end and back-end separation

Front-end and front-end separation is a new way of developing web applications, which completely separates the front-end and back-end from a technical perspective. The front-end program is responsible for generating the interface and communicating with the server to obtain data, while the background program is responsible for processing business logic and accessing the database.

This approach has many benefits. First, it can improve the efficiency of front-end and back-end development. Front-end and back-end developers can develop in parallel, reducing dependence on each other; secondly, it can improve application performance. Since front-end and back-end services can be deployed and expanded separately, the overall performance of the system can be greatly improved. In addition, this approach allows both front-end and back-end developers to focus on their respective areas as much as possible, improving code quality and maintainability.

2. Implementation of front-end and back-end separation in Laravel

In Laravel development, the implementation of front-end and back-end separation requires the use of some front-end frameworks. Among them, we can use mainstream frameworks such as Vue.js, React or Angular as front-end development solutions. In Laravel, we can use the following two methods to achieve the separation of front-end and back-end.

  1. Create a new front-end project

We can create an independent front-end project first, and then interact with the Laravel backend through the API. In this mode, Laravel is only responsible for writing the back-end data API interface, and the front-end uses AJAX or Fetch API to request the back-end data interface. The front-end and back-end codes can be deployed on different servers or ports.

The advantage of this approach is that the separation between the front-end and the back-end is very high. Developers can give full play to their respective advantages while also improving the performance of the application. You can also use some modern front-end frameworks and tools to improve development efficiency and development experience.

The following is a simple example to demonstrate the implementation of this method. Let's take Laravel as the backend and Vue.js as the frontend as an example:

1.1 Create a new Laravel project

First, we need to create a new Laravel project in the command line:

composer create-project --prefer-dist laravel/laravel blog
Copy after login
Copy after login

1.2 Create a new Vue.js project

Next, we need to create a new Vue.js project:

npm install -g vue-cli
vue init webpack frontend
Copy after login

1.3 Configure Laravel and Vue.js

Next, we need to configure the routes/api.php file to respond to requests from the Vue.js front-end.

Route::get('/todos', function () {
    return App\Todo::all();
});
Copy after login

In frontend/src/App.vue we can use Axios or any other AJAX library to get the backend API. In this example we will use the Axios library.

<template>
  <div class="todo-list">
    <div class="todo" v-for="todo in todos" :key="todo.id">
      <input type="checkbox" :checked="todo.completed" @change="toggle(todo)">
      <label>{{ todo.title }}</label>
    </div>
  </div>
</template>

<script>
import axios from 'axios'

export default {
  data () {
    return {
      todos: []
    }
  },
  created () {
    axios.get('/api/todos')
      .then(response => {
        this.todos = response.data
      })
      .catch(error => {
        console.log(error)
      })
  },
  methods: {
    toggle (todo) {
      todo.completed = !todo.completed
      axios.put('/api/todos/' + todo.id, todo)
        .then(response => {})
        .catch(error => {
          console.log(error)
        })
    }
  }
}
</script>
Copy after login

In frontend/config/index.js we can set the Vue.js frontend to use a different port than the Laravel backend. We can then run and access the application.

php artisan serve --port=8000
cd frontend
npm start
Copy after login
  1. Use Laravel Mix to package front-end projects

Another way is to package the front-end code and Laravel back-end code into the same project for deployment. In this mode, Laravel Mix is ​​used as a tool for building front-end applications. Laravel Mix is ​​a simplified Webpack build tool that allows us to easily package front-end resources.

The advantage of this method is that the front-end and back-end codes will be packaged into a whole, which is convenient for deployment and maintenance. We can use commands similar to npm run dev and npm run build to compile the front-end code and place the compilation results in Laravel's public directory so that we can view them through the browser Access the application directly.

The following is a simple example to demonstrate the implementation of this method:

2.1 Create a new Laravel project

First, we need to create a new Laravel project in the command line Laravel Project:

composer create-project --prefer-dist laravel/laravel blog
Copy after login
Copy after login

2.2 Install Node.js and NPM

In the next steps, we need to install Node.js and NPM.

In Ubuntu, you can use the following command to install:

sudo apt-get install nodejs
sudo apt-get install npm
Copy after login

2.3 Install Laravel Mix in Laravel

Then, we need to install Laravel Mix:

npm install --save-dev laravel-mix
Copy after login

Then, we need to execute the following command to generate the webpack.mix.js configuration file:

node_modules/.bin/mix
Copy after login

2.4 Write the front-end code

Next, we need to write the front-end code. For example, we can write some JavaScript code in the resources/assets/js/app.js file. The following is a simple example:

"use strict";

window.Vue = require('vue');

Vue.component('example-component', require('./components/ExampleComponent.vue'));

const app = new Vue({
    el: '#app'
});
Copy after login

2.5 Writing front-end resources

We can put the front-end resource files in the resources/assets directory. For example, we can write some CSS styles in resources/assets/sass/app.scss.

html, body {
  height: 100%;
  margin: 0;
}

#app {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.title {
  font-size: 24px;
  text-align: center;
}
Copy after login

2.6 Configuring Laravel Mix

我们需要在 webpack.mix.js 文件中配置 Laravel Mix。例如,我们可以使用 .sass() 方法来生成 CSS 文件,并使用 .js() 方法来生成 JavaScript 文件:

const mix = require('laravel-mix');

mix.js('resources/assets/js/app.js', 'public/js')
   .sass('resources/assets/sass/app.scss', 'public/css');
Copy after login

2.7 编译前端资源

接下来,我们可以运行以下命令来编译前端资源:

npm run dev
Copy after login

npm run watch
Copy after login

这样,我们就可以在浏览器中看到我们的应用程序了。

  1. 部署应用程序

无论我们使用哪种方式来实现前后端分离,最终都需要进行部署。我们可以使用第三方工具如 Jenkins、Capistrano 和 Docker Compose 等来自动化部署。这里介绍一种基于 NGINX + PHP-FPM + MySQL 的部署方式。

3.1 安装服务

首先,我们需要安装 NGINX、PHP-FPM 和 MySQL。我们可以使用以下命令在 Ubuntu 中进行安装:

sudo apt-get install nginx
sudo apt-get install mysql-server
sudo apt-get install php-fpm
Copy after login

3.2 配置 NGINX

接下来,我们需要配置 NGINX。我们可以在 /etc/nginx/sites-available 目录下创建一个新的配置文件。以下是配置文件的示例:

server {
    listen 80;
    server_name yourdomain.com;

    root /var/www/public;

    index index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ /\. {
        deny all;
    }

    location ~ \.php$ {
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        internal;
    }
}
Copy after login

我们需要将我们的代码放置在 /var/www/public 目录中。例如,我们使用前两种方式中的第一种方式,代码存放在了一个 独立的前端项目 中。我们可以使用以下命令将编译好的前端代码复制到 /var/www/public 目录中:

cp -r /path/to/frontend/dist/* /var/www/public
Copy after login

3.3 配置 MySQL

接下来,我们需要配置 MySQL。我们可以使用以下命令进行安全设置:

sudo mysql_secure_installation
Copy after login

然后,我们可以创建一个新的 MySQL 数据库:

CREATE DATABASE dbname CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'dbuser'@'localhost' IDENTIFIED BY 'dbpassword';
GRANT ALL PRIVILEGES ON dbname.* TO 'dbuser'@'localhost';
Copy after login

在 Laravel 的 .env 配置文件中,我们需要进行如下数据库配置:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=dbname
DB_USERNAME=dbuser
DB_PASSWORD=dbpassword
Copy after login

3.4 执行数据库迁移

接下来,我们需要执行 Laravel 数据库迁移,并进行一些初始化操作:

php artisan migrate
php artisan db:seed
php artisan key:generate
Copy after login

3.5 重启服务

最后,我们需要重启 NGINX 和 PHP-FPM 服务,使配置生效:

sudo systemctl restart nginx
sudo systemctl restart php7.4-fpm
Copy after login

至此,我们可以通过浏览器访问我们的应用程序,Laravel 前后端分离部署就完成了。

三、结论

本文介绍了使用 Laravel 实现前后端分离部署的两种方式:创建一个新的前端项目和使用 Laravel Mix 打包前端项目两种方式。当然,对于前端开发人员来说,也可以选择自己熟悉的框架、编程语言来进行前端开发,只需要遵循前后端分离的原则即可。总之,Laravel 的灵活性使得它可以与许多现代前端框架和工具配合使用,让开发人员可以更自由地选择适合自己的开发方式。

The above is the detailed content of How to use Laravel to implement separate deployment of front-end and back-end. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

Laravel user login function Laravel user login function Apr 18, 2025 pm 12:48 PM

Laravel provides a comprehensive Auth framework for implementing user login functions, including: Defining user models (Eloquent model), creating login forms (Blade template engine), writing login controllers (inheriting Auth\LoginController), verifying login requests (Auth::attempt) Redirecting after login is successful (redirect) considering security factors: hash passwords, anti-CSRF protection, rate limiting and security headers. In addition, the Auth framework also provides functions such as resetting passwords, registering and verifying emails. For details, please refer to the Laravel documentation: https://laravel.com/doc

Laravel framework installation method Laravel framework installation method Apr 18, 2025 pm 12:54 PM

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

Laravel and the Backend: Powering Web Application Logic Laravel and the Backend: Powering Web Application Logic Apr 11, 2025 am 11:29 AM

How does Laravel play a role in backend logic? It simplifies and enhances backend development through routing systems, EloquentORM, authentication and authorization, event and listeners, and performance optimization. 1. The routing system allows the definition of URL structure and request processing logic. 2.EloquentORM simplifies database interaction. 3. The authentication and authorization system is convenient for user management. 4. The event and listener implement loosely coupled code structure. 5. Performance optimization improves application efficiency through caching and queueing.

How to view the version number of laravel? How to view the version number of laravel How to view the version number of laravel? How to view the version number of laravel Apr 18, 2025 pm 01:00 PM

The Laravel framework has built-in methods to easily view its version number to meet the different needs of developers. This article will explore these methods, including using the Composer command line tool, accessing .env files, or obtaining version information through PHP code. These methods are essential for maintaining and managing versioning of Laravel applications.

How to learn Laravel How to learn Laravel for free How to learn Laravel How to learn Laravel for free Apr 18, 2025 pm 12:51 PM

Want to learn the Laravel framework, but suffer from no resources or economic pressure? This article provides you with free learning of Laravel, teaching you how to use resources such as online platforms, documents and community forums to lay a solid foundation for your PHP development journey from getting started to master.

What versions of laravel are there? How to choose the version of laravel for beginners What versions of laravel are there? How to choose the version of laravel for beginners Apr 18, 2025 pm 01:03 PM

In the Laravel framework version selection guide for beginners, this article dives into the version differences of Laravel, designed to assist beginners in making informed choices among many versions. We will focus on the key features of each release, compare their pros and cons, and provide useful advice to help beginners choose the most suitable version of Laravel based on their skill level and project requirements. For beginners, choosing a suitable version of Laravel is crucial because it can significantly impact their learning curve and overall development experience.

The difference between laravel and thinkphp The difference between laravel and thinkphp Apr 18, 2025 pm 01:09 PM

Laravel and ThinkPHP are both popular PHP frameworks and have their own advantages and disadvantages in development. This article will compare the two in depth, highlighting their architecture, features, and performance differences to help developers make informed choices based on their specific project needs.

See all articles