我有一个为用户生成通知的通知应用。通知类必须非常通用,因为通知是由各种不同的东西生成的。
我的问题是:如何在通知文本中插入链接?
我试过的是:
note = Notification(..., notification="""%s %s has accepted the task: <a href="/tasks/%d/">%s</a>.""" % (request.user.first_name, request.user.last_name, task.id, task.name), ...)
回想起来,很明显这不起作用。 我该怎么办呢? 提前谢谢!
编辑:Django正在输出&lt;和&gt;字符为lt和gt