Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Program-O 开发一个 AIML 聊天机器人。有什么方法可以重定向到用户输入中提到的链接。我可以在 AIML 中使用 href 属性吗?例如:
<category> <pattern>Go To google.com</pattern> <template>Can i put something here to redirect to google.com?</template> </category>
使用系统元素我们可以做到这一点。假设您使用 Windows...
<category> <pattern>Go To google.com</pattern> <template><system>start "http://www.google.com"</system></template> </category>