1

私はid_に基づいて更新したい.フロントエンドレベルでは、このIDは取得できませんでした..このIDをコントローラーに渡す方法..同じこと受信ボックスメッセージを読んだら、受信ボックスのフォントスタイルを変更したい..

4

1 に答える 1

2

メッセージの受信トレイを読む:

   1. Add new field in inbox message table named `is_read` type `int`.

   2. And write a select query to select is_read and check whether it is 0 or 1.

   3. If 'is_read' = 0 write a CSS style and if 'is_read' = 1 write a different CSS style for the font.

   4. And you can fix your self 0 as unread and 1 as read.

   5. Then write a update query for 'is_read' as 1 , When selecting the inbox message.
于 2013-08-09T07:57:30.680 に答える