使用URL链接预填Microsoft Bookings网页表单(它使用数据反应堆元素)

问题描述 投票:2回答:1

我正在尝试构建URL链接,以包括在电子邮件中,该链接以网站上的表单预先填充收件人的信息。该站点是Microsoft Bookings site

占位符不是字段ID,但这是我要创建的示例:

https://outlook.office365.com/owa/calendar/[email protected]/bookings?Name=Kona&[email protected]

[当我尝试标识单个表单字段ID时,对于URL参数,我看到表单对所有元素都使用服务器端数据反应堆。

outerHTML

<input autocorrect="off" autocapitalize="off" spellcheck="false" type="text" placeholder="Name" value="" data-reactid=".0.2.6.1.0.$0" data-keeper-lock-id="k-3jm7ib30q1p">

选择器

#mainContainer > div > form > div.section.customerSection > div > div:nth-child(1) > input[type="text"]:nth-child(1)

Xpath

//*[@id="mainContainer"]/div/form/div[6]/div/div[1]/input[1]

我的挑战是,如果可能的话,了解URL的正确语法。我试图以多种方式对语法进行逆向工程,但是继续收到Bad Request响应,没有更改或错误重定向。

非常感谢提供的任何教育。

谢谢

reactjs email syntax hyperlink url-parameters
1个回答
0
投票

您有没有得到答案?尝试做类似的事情。

© www.soinside.com 2019 - 2024. All rights reserved.