我正在使用胡子。我正在生成一个通知列表。一个通知 JSON 对象看起来像:
[{"id":1364,"read":true,"author_id":30,"author_name":"Mr A","author_photo":"image.jpg","story":"wants to connect","notified_type":"Friendship","action":"create"}]
有了胡子,我怎么能做一个如果语句或案例语句的基础上的 notified_type
和 action
..。
如果 notified_type == "Friendship"
渲染... ..。
如果 notified_type == "Other && action == "invite"
渲染... ..。
这是怎么回事?