使用查看数据创建链接
我将如何解决这个问题:
背景:
我创建了一个显示的视图: 用户名、名字、姓氏、电子邮件
我在视图显示中添加了一个下拉过滤器,可以根据用户术语(用户标记模块)或兴趣来过滤用户。
这一切都很好。
问题:
我现在想在过滤器下拉列表的顶部添加一个电子邮件组链接。此链接只是一个电子邮件 mailto 链接,会根据更适合的选择动态更改。
例如,如果选择过滤器“A”并且显示有 2 个人具有该标签,则电子邮件组链接应包含这 2 个人的电子邮件地址 - 非常简单。
我该如何添加这个基本功能?
How would I approach this problem:
Background:
I have created a view that displays:
Username, FirstName, LastName, Email
I have added a dropdown filter to the view display that enables the filter of users based on user terms (a user tagging module), Or interests.
That works all good.
The problem:
I now want to add a email group link at the top along side the filter drop down. This link is just an email mailto link that changes dynamically based on the fiter selection.
For example if a filter "A" is chosen and 2 people are displayed as having that tag, the email group link should include the Email address of those 2 people - pretty simple.
How do I go about adding this basic feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要执行这样的操作,在预处理函数中可能是最简单的。您只需循环遍历所有行并获取所有电子邮件地址,然后从中创建 mailto 链接。
您可以使用
l()
函数创建 mailto 链接。To do something like this, would probably be easiest in a preprocess function. You only need to loop through all the rows and get all the email addresses, and create the mailto link from that.
You can use the
l()
function to create mailto links.