如何发出消息,根据数据表显示结果,并在文本中附加超链接?
我正在努力实现的示例:
num = phone_format(str(sheet["" + chr(ord(requested_info_column)+1) + "{}".format(row)].value))
dispatcher.utter_message(text="The " + column_names[requested_info_column]
+ " for the " + str(sheet["B{}".format(row)].value) + " project is "
+ str(sheet["" + str(requested_info_column) + "{}".format(row)].value)
+ " and can be reached at " + num)
格式化方法:
def phone_format(n):
formatNum = '({}){}-{}'.format(n[0:3], n[3:6], n[6:])
hypNum = '<a href="tel:%s">%s</a>' % (n, formatNum)
return hypNum
我遇到的问题是 Rasa X 使用正确的数据显示字符串,但超链接未附加到电话号码。