问题描述
我目前有两个清单。列表A包含用户的信息,列表B包含有关所有用户的信息。我想要实现的是在列表A中创建一个引用列表b的超链接,但是例如,如果用户John点击他名字附近的超链接
,我希望他被重定向到列表B但只显示他的信息而不是所有其他人。 (我不介意其他用户仍然可以从列表a中查看其他用户的数据)
我想到的唯一方法是为每个用户创建一个列表,这将导致大量的开销超时或通过列表B上的[user]过滤修改视图但是我不认为这是最优的,因为不仅特定用户会看到
因此使用过滤的数据会产生问题。
摘要:单击条目中的超链接时,只有包含该条目的信息必须显示在包含有关每个人的信息的列表中。
Hi, I currently have 2 lists. List A contains information of users, List B contains information regarding all the users. What I'm trying to achieve is creating a hyperlink in List A that refers to List b, however for example if user John clicks the hyperlink near his name I want him to be redirected to List B but showing only his information and not all of the others. (I do not mind that other users can still view other users's data from List a)
The only method I have thought of is by creating a list for each user, which will result in a lot of overhead overtime or by modifying views by filtering by [user] on list B however I don't see this as optimal since not only that particular user will see that data hence using the filtering will create problems.
Summary: When clicking a hyperlink from an entry, Only information regarding that entry must be shown from a list containing information regarding everyone.这篇关于单击超链接时查看特定数据。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!