gpt4 book ai didi

javascript - 使用 GET 变量重写表单提交

转载 作者:行者123 更新时间:2023-11-29 07:37:02 25 4
gpt4 key购买 nike

美好的一天,善良的人们.. 现在我知道这个关于干净 URL 的问题可能已经被问过十几次,但他们似乎都不是我遇到的问题。我正在使用 while 循环为我的表单生成不同的 product_ID,该表单是使用 GET 方法提交的。但是,我已经能够将 htaccess 文件中的 URL 字符串重写为类似

localhost/source/p/variable1-variable2-variable3.html

我还使用 javascript 来防止默认提交给我所需的 URL 格式。

现在我的问题是……没有 URL 重定向,它给了我不同的 ID,但格式不正确:

localhost/source/p?  agent_id=variable1&product_title=variable2&product_id=variable3

在我的 while 循环中使用不同的变量..

但是使用 Javascript 重定向,它只给我第一个 ID,并在 20 多种不同的情况下继续显示具有该 ID 的内容。因此,我需要有关如何提供我通常应该获得的不同 ID 的帮助。这是我的文件:

我的 HTACCESS 文件

Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^p/([0-9]+)-([0-9a-zA-Z_-]+)-([0-9]+)\.html$ product.php?agent_id=$1&product_title=$2&product_id=$3 [QSA, NC, L]

php Action 文件

<?php 
$SQL = Select * from product where..
$query = mysqli_query($con, $sql);
While ($row = mysqli_fetch_assoc($query)) {
$product_id = $row ['product_id'];
$agent_id = $row ['agent_id'];
$product_title = $row ['product_title'];
?>
<form id="myform" method='get' action='p/'>
<input type="hidden" name="agent_id" value="<?php echo $agent_id; ?>" />
<input type="hidden" name="product_title" value="<?php echo $product_title; ?>" />
<input type ="hidden" name="product_id" value="<?php echo $product_id; ?>" />
<button type="submit">View product</button>
</form>
<?php } ?>

我的JavaScript

$(function(){
$("#myform").submit(function(e){
e.preventDefault();
var action = $(this).attr("action");
var agent_id = $(":input[name='agent_id']").val();
var product_title = $(":input[name='product_title']").val();
var product_id = $(":input[name='product_id']").val();
action = action + agent_id + "-" + product_title + "-" + product_id + ".html";
location.href = action;
});
});

所以我不知道我做错了什么..不知道如何遍历它以提供各种 ID,因为我认为 while 循环会改变它..但事实并非如此。

抱歉,如果有点乱,请通过我的手机打字。

最佳答案

首先,当您不确定 .htaccess 在涉及 mod_rewrites 时做了什么,您应该首先调高 mod_rewrite 的日志记录级别,因为这通常可以为您指明正确的方向: http://httpd.apache.org/docs/current/mod/mod_rewrite.html

LogLevel alert rewrite:trace3

接下来,我建议您提供一个正在匹配的 URL 的有效示例,然后使用诸如 The Regex Coach 之类的工具来检查您的模式是否确实与数据正确匹配。

我对此处实际问题的猜测是产品标题未按预期匹配(可能是意外的编码字符或其他),但 mod_rewrite 的日志记录会告诉您正则表达式是否成功。

最后,如果您实际上不打算提交表单,我不确定为什么要使用表单标签...

为什么不直接使用 PHP 构建一个重定向到该位置的按钮?

...
$product_title = $row ['product_id'];

echo "<input type='button' value='View product' onclick='location.href=\"/p/".urlencode($agent_id)."-".urlencode($product_title)."-".urlencode($product_id)."\";'>\n";
?>

这比试图阻止表单提交并使用 Javascript 即时构建它要干净...

关于javascript - 使用 GET 变量重写表单提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48314173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com