您好,登錄后才能下訂單哦!
在 Linux 上設置 Laravel 的表單,你需要遵循以下步驟:
首先,確保你已經在你的 Linux 服務器上安裝了 PHP、Composer 和 Nginx 或 Apache。然后,使用 Composer 創建一個新的 Laravel 項目:
composer create-project --prefer-dist laravel/laravel your_project_name
接下來,你需要配置你的 Web 服務器以指向 Laravel 項目的 public
目錄。這里以 Nginx 和 Apache 為例:
server {
listen 80;
server_name your_domain.com;
root /path/to/your_project_name/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # 根據你的 PHP 版本修改這里
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
<VirtualHost *:80>
ServerName your_domain.com
DocumentRoot /path/to/your_project_name/public
<Directory /path/to/your_project_name/public>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
在 Laravel 項目中,你可以使用 Blade 模板引擎創建表單。在 resources/views
目錄下,找到或創建一個名為 form.blade.php
的文件,并添加以下內容:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laravel Form</title>
</head>
<body>
<form action="/submit" method="POST">
@csrf
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</body>
</html>
打開 routes/web.php
文件,添加一個路由來處理表單提交:
Route::post('/submit', 'FormController@submit');
使用以下命令創建一個新的控制器:
php artisan make:controller FormController
接下來,打開 app/Http/Controllers/FormController.php
文件,添加一個名為 submit
的方法來處理表單數據:
public function submit(Request $request)
{
$name = $request->input('name');
$email = $request->input('email');
$message = $request->input('message');
// 處理表單數據,例如將數據保存到數據庫
return redirect('/');
}
現在,你已經在 Linux 上設置了一個基本的 Laravel 表單。訪問你的域名,你應該能看到一個包含表單的頁面。填寫表單并提交后,表單數據將被發送到 /submit
路由,并由 FormController
處理。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。