问题标签 [querystringparameter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何在 Android 中更新 HTTP GET 查询字符串中的某些参数?
当从菜单中选择元素并且它们相应的查询字符串的参数必须更改以显示信息时,我将构建一个应用程序:
查询字符串示例:“?inst=8&group=4420&semestr=1&semest_part=2”。你能告诉我怎么做吗?
php - PHP查询字符串问题
我对 PHP 有点陌生,我有一个小问题,希望能得到一些帮助。我在文件中使用以下查询,我想在最后添加一个排序顺序。我不确定如何转义查询的最后一部分以使查询接受排序顺序。
我想用的是
但这会产生错误。
任何帮助将不胜感激。
谢谢JW
c# - Url skip second querystring parameter in HttpContext.Current.Request.Url.AbsoluteUri
I have a class which i inherit to all pages to check if session timeouts then redirect to login page here is the code
Every page inherit this class and if session timeouts then page is redirected to login page now i used
Response.Redirect("Login.aspx?ReturnUrl=" + HttpContext.Current.Request.Url.AbsoluteUri);
but if my querystring has two parameters for eg http://localhost/mala3ibnav2/WeeklyManager/TeamSetup.aspx?Gid=MTQ=&Mid=Mg==
in AbsoluteUril &Mid=Mg== is sometimes skipped not always.
Here is the code for Login Page login button click event
Now why second parameter is skipped in querystring and what else should I is use instead of HttpContext.Current.Request.Url.AbsoluteUri
jquery - 如何使用 Jquery 从查询字符串中删除空格?
我在 jquery 中使用查询字符串
获取我正在使用的 URL 值
在这里,当我将查询字符串传递给 URL 时,它给出的空格为 %20,当我从 URL 获取值时,我将名称的值作为 Name%20Name 格式
我应该怎么做才能用空格作为分隔符?
jquery-mobile - jQuery Mobile:每次页面加载时如何读取查询字符串参数?
我对 jQuery 和 jQuery Mobile 完全陌生,并且遇到了问题。我有两个 html 页面,其中一个是项目列表。每个项目链接到主页,并添加 ?id=xxx 到 url。主页使用以下代码读取 id 并提供内容:
然后我使用将 id 打印到控制台
页面第一次加载 id 是正确的。当我加载列表并选择不同的项目时,URL 中的 id 会发生变化,但是与以前相同的 id 会打印到控制台并且内容不会更新。我认为这个问题可能与缓存有关。我尝试使用不同的函数(没有 RegExp)来读取 id,但它产生了同样的问题。
谢谢!
asp.net - POST parameters in asp.net
I'm trying to get parameters received from a form, that were sent with method POST.
I don't know how it's called in asp, M$ loves to change stuff's names to mess with us. They come in HTTP body, while GET/QueryString parameters come in URL after the ? sign.
In PHP, "get patameters" are available in the $_GET
array. In asp they are Request.QueryString["parameter1"]
.
"post patameters" are in $_POST
, and I cant find it in asp. I hope I made it clear :p
c# - 使用数组生成查询字符串
对于我的自定义分页,我想将一个 int 数组添加到查询字符串(过滤)
这是我在视图中的代码:
这条线
结果:?skills=1%26skills%3D2
但是我怎样才能将查询字符串更改为: ?skills=1&skills=2 ?
javascript - 从参数对象构建查询字符串
如何在 Angularjs 中使用查询参数构建 url。
我看到了 API $location.search()
问题是 $location(url) 是重定向到 url。就我而言,我想为查询参数传递一个 url 和 key:value 对并构建 url。就像是
网址:/a/b/c
参数:{field1: value1, field2: value2}
结果:/a/b/c?field1=value1&field2=value2
我喜欢将此网址用于链接。我还看到了 angular encode ?
,&
字符。我可以避免这种情况吗?
编辑:
我的意图是使用 url 作为锚元素的 href。我确实使用 $http 发送请求,但有时我需要提供带有查询参数的链接(基于当前对象)
谢谢
.htaccess - 具有通配符的 HTAcess 301 重定向 URL 参数?
我已经接管了一个网站并重写了画廊设施以使用 Fancy 灯箱插件而不是每个图像的单独页面,总共 42 页,即画廊现在只包含一个网页。
因此,我在 HTAcess 文件中为所有相关的 301 添加了 42 次 :( :
有没有办法使用通配符来捕获画廊编号,在这种情况下为 14,并将该部分缩短为 HTAccess 文件中的单个条目?
谢谢你的任何建议。
asp.net - 问号作为查询参数?
代码如下
我试过这段代码。但是服务器返回
'?' 附近的语法不正确。说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。异常详细信息:System.Data.SqlClient.SqlException:“?”附近的语法不正确。
做什么EmployeeID=?
,ShippedDate=?
并在和OrderID = ?
中指定?它们写得正确吗?SelectCommand
UpdateCommand
如何使这段代码工作?