MySQL과 Ruby on Rails를 사용하여 간단한 소셜 네트워크 기능을 개발하는 방법
오늘날의 디지털 시대에 소셜 네트워크는 사람들의 삶의 일부가 되었습니다. 사용자의 요구를 충족시키기 위해서는 간단하면서도 완전한 기능을 갖춘 소셜 네트워크 애플리케이션을 개발하는 것이 필요합니다. 이 기사에서는 MySQL과 Ruby on Rails를 사용하여 간단한 소셜 네트워크 애플리케이션을 개발하는 방법을 소개하고 구체적인 코드 예제를 제공합니다.
Rails 애플리케이션 생성
명령줄에 다음 명령을 입력하여 새로운 Rails 애플리케이션을 생성하세요:
rails new social_network
데이터베이스 구성
프로젝트의 루트 디렉터리에서 config/database.yml 파일을 찾아 열고 편집하세요. 다음을 사용하여 적절한 위치를 채우십시오.
development: adapter: mysql2 encoding: utf8 database: social_network_development pool: 5 username: your_mysql_username password: your_mysql_password host: localhost
your_mysql_username
和your_mysql_password
를 MySQL 사용자 이름과 비밀번호로 바꾸십시오.
Create Database
데이터베이스를 생성하려면 명령줄에 다음 명령을 입력하세요.
rails db:create
Create User Model
다음 명령을 입력하여 User라는 모델을 생성하세요.
rails generate scaffold User username:string email:string password:string
그런 다음 데이터베이스 마이그레이션을 실행하세요. :
rails db:migrate
이렇게 하면 데이터베이스에 사용자 이름, 이메일 및 비밀번호 필드가 포함된 users라는 테이블이 생성됩니다.
소셜 네트워크 모델 만들기
다음 명령을 입력하여 Friendship이라는 모델을 생성합니다.
rails generate model Friendship user_id:integer friend_id:integer
그런 다음 데이터베이스 마이그레이션 명령을 실행합니다.
rails db:migrate
그러면 데이터베이스에 user_id 및 friend_id 필드가 포함된 Friendships라는 테이블이 생성됩니다. 사용자 간의 관계를 설정하는 데 사용됩니다.
연결 설정
우정 모델과의 연결을 설정하려면 사용자 모델에 다음 코드를 추가하세요.
class User < ApplicationRecord has_many :friendships has_many :friends, through: :friendships end
이렇게 하면 사용자는 친구 방법을 통해 여러 친구를 사귀고 모든 친구를 얻을 수 있습니다.
컨트롤러 작성
app/controllers 디렉터리에friends_controller.rb라는 파일을 만들고 다음 코드를 추가하세요.
class FriendshipsController < ApplicationController def create @friendship = current_user.friendships.build(friend_id: params[:friend_id]) if @friendship.save flash[:success] = "Friend added" else flash[:error] = "Unable to add friend" end redirect_to root_url end def destroy @friendship = current_user.friendships.find_by(friend_id: params[:id]) @friendship.destroy flash[:success] = "Friend removed" redirect_to root_url end end
이 코드는 Friendship 개체를 만들고 삭제하는 방법을 정의합니다.
View 업데이트
app/views/users/show.html.erb 파일을 열고 다음 코드를 추가하세요:
<% @user.friends.each do |friend| %> <p><%= friend.username %>: <%= link_to "Remove Friend", friendship_path(friend), method: :delete, data: { confirm: "Are you sure?" } %></p> <% end %> <h1>Add Friend</h1> <%= form_tag friendships_path, method: :post do %> <%= hidden_field_tag :friend_id, @user.id %> <%= submit_tag "Add Friend" %> <% end %>
이렇게 하면 사용자의 개인 페이지에 친구 목록이 표시되며 다음을 통해 친구를 추가하거나 제거할 수 있습니다. 친구 버튼을 클릭하세요.
애플리케이션 실행
명령줄에 다음 명령을 입력하여 애플리케이션을 시작하세요.
rails server
이제 http://localhost:3000을 방문하여 간단한 소셜 네트워크 애플리케이션을 사용할 수 있습니다!
요약:
이 글의 소개를 통해 MySQL과 Ruby on Rails를 사용하여 간단한 소셜 네트워크 기능을 개발하는 방법을 배웠습니다. 사용자 모델과 우정 모델을 생성하고 해당 연결 및 컨트롤러를 설정함으로써 사용자 간의 관계와 친구 추가 및 삭제 기능을 구현할 수 있습니다. 이 글이 여러분에게 도움이 되길 바라며, 원활한 발전을 기원합니다!
위 내용은 MySQL과 Ruby on Rails를 사용하여 간단한 소셜 네트워킹 기능을 개발하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!