如何强制表单操作使用绝对URL?

时间:2017-05-28 05:44:41

标签: html

我在我的网站staticmantest.github.io上使用以下表格:

<form class="js-form form" method="post" action="104.131.76.120:8080/v2/entry/StaticManTest/StaticManTest.github.io/master/reviews">

我打算将POST请求发送到104.131.76.120:8080/v2/entry/StaticManTest/StaticManTest.github.io/master/reviews。但是,它被发送到https://staticmantest.github.io/104.131.76.120:8080/v2/entry/StaticManTest/StaticManTest.github.io/master/reviews。我该怎么做才能强制这个表单操作成为一个绝对的路径?

1 个答案:

答案 0 :(得分:2)

使用

为您的网址添加前缀
http://

以便它

http://104.131.76.120:8080/v2/entry/StaticManTest/StaticManTest.github.io/master/reviews

否则,它被视为相对URL。