gpt4 book ai didi

javascript - 如何从 PHP 文件获取 ajax 结果值

转载 作者:行者123 更新时间:2023-12-03 03:04:38 24 4
gpt4 key购买 nike

我正在向这样的 php 文件发布帖子:

$( document ).ready(function() {
$(document).on('click', '.menulistnaam', function (){
var menucatnaam = $(this).attr('id');

$.post("include/menuinclude.php?menucat="+menucatnaam, function(result){
$("#menukaart").html(result);
});
});
});

一切正常,但我想将特定结果发送回此代码。

在我的 PHP 中,我有以下内容:

$menucatnaam = $_GET['menucat'];

$menu = "
select
cnt.catid, cat.id, cnt.title, cnt.introtext, cnt.fulltext, cnt.ordering, cnt.images, cnt.alias, cnt.state, f.item_id, cat.id, cat.title,
max(case when f.field_id = 8 then f.value end) as nieuw,
max(case when f.field_id = 7 then f.value end) as beschrijving,
max(case when f.field_id = 5 then f.value end) as prijs,
max(case when f.field_id = 4 then f.value end) as inhoud,
max(case when f.field_id = 3 then f.value end) as media
from snm_fields_values f
join snm_content cnt
on cnt.id = f.item_id
join snm_categories cat
on cnt.catid = cat.id
where cnt.state = 1
and cat.alias = '".$menucatnaam."'
group by f.item_id
order by f.item_id, media, beschrijving, prijs, inhoud, nieuw
";

如何发回 $menucatnaam 的值?

最后,我想检查单击了哪个 anchor 标记并为其指定一个 active 类。

我用谷歌搜索了一下,发现我必须创建一个数组,然后用 json 对其进行编码,但我无法让它工作。

我的尝试是这样的:

$aliasjson = json_encode(array("aliasresult"=>"$menucatnaam"));
echo $aliasjson;

然后是我的js:

$.post('include/menuinclude.php', {"menucat": menucatnaam}, function (result) {
$("#menukaart").html(result);
console.log(result.aliasresult);
}, 'json');

但这根本没有给我想要的结果,当我点击 anchor 标记时什么也没有发生。

我该怎么做?

最佳答案

在ajax调用中添加以下参数

dataType: "json",//tells jQuery that you want it to parse the returned JSON

得到回复后

result = jQuery.parseJSON(result);//parsing JSON to string
console.log(result.result);

否则 不要更改任何 jquery 代码,只需从 PHP 回显所需参数

echo $menucatnaam;

关于javascript - 如何从 PHP 文件获取 ajax 结果值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47221472/

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