0

这是一个愚蠢的问题,但很奇怪,我用谷歌搜索了它,我确信我以前在 Rails 指南中看到过它,但现在找不到它。

我想将参数附加到我的 URL。

我的初始网址是这样的:"http://localhost:3000/pharmacy/patients"

现在我在 JavaScript 中附加一个带有字符串连接的 URL,它将是这样的:

"http://localhost:3000/pharmacy/patients?provider=234"

而且还是不错的。

现在我想附加一个名为的第二个参数thera_class,它的字符串,它们之间有空格,比如“鼻塞”

如果我还想将第二个参数连接到它,那么 URL 会是什么样子?

4

1 回答 1

1

它的外观是:

http://localhost:3000/pharmacy/patients?provider=234&thera_class=Nasal Congestion

为了更加严格,URL 中的空格被替换为 %20:

http://localhost:3000/pharmacy/patients?provider=234&thera_class=Nasal%20Congestion
于 2013-08-09T14:56:01.730 回答