如何在Pug模板中编写'mailto',以便用户在点击电子邮件时自动获取默认电子邮件应用程序中的真实电子邮件值?以这种方式写作:
accessibilityIdentifier = "checked"
在电子邮件字段中获取字符串a(href=`mailto:#{user_email}`) Send an email
,而不是变量值。
答案 0 :(得分:2)
我找到了!在链接中,我应该直接从源代码中读取,如下所示:
a(href=`mailto:`+ user.email) Send an email
答案 1 :(得分:0)
三年前,这个答案是有效的,但我认为已过时。 不为我工作。
您可以在此答案中找到更多=> Original Answer
这是踢手:
const from = 'helloworld@dev.com'
a(href=`mailto:${from}`, target='_blank', ...) Answer to #{from}
您可以看到反引号和美元符号的使用。
简单模板文字=> MDN
?