英文:
Add a window.open as part of teams webhook OpenURI
问题
我正在尝试在 Teams Webhook 操作中使用 window.open
来添加一个弹出窗口,但到目前为止没有成功。任何帮助将不胜感激。
{ "type": "MessageCard", "context": "http://schema.org/extensions", "summary": "test", "potentialAction": [{ "type": "OpenUri", "name": "Add comment", "targets": [{ "os": "default", "uri": "window.open('http://test.com', 'width=600, height=600')" }] }]
英文:
Am trying to add a popup using window.open in teams webhook action, no success till now.
Any help here is much appreciated
{"@type": "MessageCard","@context": "http://schema.org/extensions","summary": "test","potentialAction": [{"@type": "OpenUri","name": "Add comment","targets": [{"os": "default","uri": "window.open('http://test.com', 'width=600, height=600')"}]}]}
答案1
得分: 0
不适合使用window.open
在Teams Webhook操作中添加弹出窗口。
英文:
It's not feasible to add a popup using window.open in teams webhook action.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论