0

我有一个包含 2 的表单<select>,第一个选择会在页面加载时自动填充,而第二个选择会根据第一个选择中选择的选项自动填充。

To accomplish this, whenever the the select's state changes, the selected value in the first would be passed to a seperate page where it is used to populate the 2nd<select>

问题

通过 url 传递的选定值(在本例中为 Food & Beverages)被中途切断,导致将不完整的字符串发送到 2nd 的处理页面,从而导致它无法运行。

为确定问题而采取的步骤 我已经回显了通过 url 传递的值并且只得到了“Food”,而字符串的其余部分被切断了。我尝试将字符串值替换为 Food and Beverage,整个过程完美运行,这让我得出结论,字符串被切断是由于 & 符号导致计算机处理字符串的一部分在与号之后作为另一个值通过 URL 传递。但是,由于我没有将它分配给变量,因此它没有被传递。

问题

有什么方法可以让我在不被切断的情况下传递价值?

代码摘录:

处理页面

<?PHP
include("cxn.inc");

$query=$cxn->prepare("SELECT * FROM `BusinessSubCategory` WHERE `BusinessCategory`=:businesscategory");
$query->bindValue(":businesscategory",$_GET['category']);
$query->execute();
$count=$query->rowCount();
if($count>0)
{
    echo"<option id='subcategory' value=''>Please select a SubCategory</option>";
    while($result=$query->fetch(PDO::FETCH_ASSOC))
    {
        $subcategory=$result['BusinessSubCategory'];
        echo"<option id=$subcategory value=$subcategory >$subcategory</option>";
    }
}
else
{
    echo"<option id='subcategory' value=''>Error,fetch query not run. </option>";
}
?>

jQuery 代码

$(document).ready(function(){

$('#BusinessCreateCategory').load('getbusinesscategory.php');

$('#BusinessCreateCategory').change(function(){

    var category=$('#BusinessCreateCategory').val();
    window.location.href='getbusinesssubcategory.php?category='+category;

});

编辑:尝试 encodeURIComponent,但数据没有被编码,正如我从处理 apge 的 url 中看到的那样,它在&符号处被切断。但是,如果我要手动输入 url 作为字符串然后使用它进行编码encodeURIComponent,它工作得很好。任何人都可以解释为什么我无法编码 $('#BusinessCreateCategory').val(); ? 谢谢!

例如这有效

var category="Food & Beverages";
    var encoded =encodeURIComponent(category);
    window.location.href='getbusinesssubcategory.php?category='+encoded;

例如,这不

var category=$('#BusinessCreateCategory').val();
    var encoded= encodeURIComponent(category);
    window.location.href='getbusinesssubcategory.php?category='+encoded;

如果有帮助,我试图通过 url 传递的数据是从我的数据库中获取的。

4

3 回答 3

2

encodeURIComponent在 URL 中使用它之前,您需要先获取 category 的值。

$('#BusinessCreateCategory').change(function(){

    var category=$('#BusinessCreateCategory').val();
    var encoded = encodeURIComponent(category);
    window.location.href='getbusinesssubcategory.php?category='+encoded;

});

与号是一个特殊字符,它会使您尝试传递的 URL 出现乱码。对值进行编码应该允许您将其视为单个值。

于 2013-10-29T17:21:24.667 回答
0

可以通过多少个字符有浏览器限制。您是否有尝试传递的完整字符串的示例?我最初怀疑这可能是一个编码问题。

于 2013-10-29T17:16:46.103 回答
0

encodeURIComponent 对正在传递的字符串进行编码。

该值应该被编码,但是当您查询您的数据库时,它可能会寻找完全匹配,如果您无法通过编码字符串看到任何输出,请使用 decodeURIComponent 在将字符串传递给数据库之前对其进行解码。在正式输入代码之前检查 phymyadmin 的输出。

于 2013-10-29T17:24:49.833 回答