コード– category –
-
コード
EC2でPHPのmbstringが使えない
Laravel8でメール送信しようとしたら以下のエラーが出ました。 Call to undefined function mb_strcut() Laravelではメール送信時にmbstringを使っていますが、phpのmbstringを入れていないのが原因でこのようなエラーが出ていました。 この記事ではEC2にm... -
コード
ERROR 1227 (42000) at line 18: Access denied; you need (at least one of) the SUPER privilege(s) for this operation
EC2でRDSからデータをダンプしてから、RDSへリストアしようとしたらタイトル通りのエラーが出ました。 リストアしようとして実行したコマンドは以下のとおりです。 $ mysql -u USER_NAME -p -h HOST_NAME < dump.sql Enter password: ERROR 1227 (42000... -
React
Uploading multiple images using react.
In this article, we will show you how to select and upload multiple images in react. In the sample code shown later, we will use the material UI v5axiostypescript in the sample code I will show later. This sample code assumes a form wher... -
コード
reactで複数の画像をアップロードする
この記事ではreactで複数の画像を選択してアップロードする方法をご紹介します。 後でご紹介するサンプルコードでは material UI v5axiostypescript を使用しています。 ご紹介するサンプルコードはコメントに画像を付けて投稿するフォームを想定していま... -
React
material-tableのexportCsvを使って出力をカスタマイズする
この記事ではmaterial-tableのexportCsvを使って出力するCSVをカスタマイズする方法をご紹介します。 exportCsvは出力するCSVの内容を変更できるオプションプロパティです。 Function to create a custom CSV fileカスタムCSVファイルを作成する機能https:... -
Django
Djangoのchoicesフィールドのリストを取得する
この記事ではDjangoのModelで定義したchoicesをviewで取得する方法をご紹介します。 viewで取得したあとはロジックに使用したり、テンプレートに渡したりできます。 まずは、モデルで以下のようにchoicesフィールドを定義します。 class Tag(BaseModel): t... -
Django
Django REST frameworkのSerializerでユーザー情報を取得する
Django REST framework(以下、DRF)のSerializeでユーザー情報を取得する方法をご紹介します。 この記事でのご紹介する取得する方は contextから取得CurrentUserDefaultから取得 です。 どちらも簡単にユーザー情報を取り出せるので用途に合わせて使って... -
Laravel
Implementing email address authentication in an API server using Laravel
In this article, I will show you how to implement email address authentication in an API server using Laravel. In this article, we will use the MustVerifyEmail interface, which is newly implemented in Laravel 5.7.By implementing the Must... -
Laravel
Laravelを使ったAPIサーバーでメールアドレス認証を実装する
この記事ではLaravelを使ったAPIサーバーでメールアドレス認証を実装する方法をご紹介します。 今回はLaravel5.7から新たに実装されたMustVerifyEmailインターフェースを使います。MustVerifyEmailインターフェースを実装することで確認メール送信が自動で... -
React
Cannot invoke an object which is possibly ‘undefined’.
In this article, I will show you how to solve the problem of "Cannot invoke an object which is possibly 'undefined'. In this article, I will show you how to solve the problem when you get the error "Cannot invoke an object which is possi...