如何获取 function2 返回的 function1 中的字符串值

发布于 2024-10-22 17:01:55 字数 306 浏览 0 评论 0原文

我如何获取函数2中返回的函数1中的字符串值,即

function fnc1(){
var text = fnc2("Pencils");
alert(text);
}

function fnc2(mytext){
$.post("process.php", {t:mytext}, function(data){
return data;
});
}

在process.php中

<?php
echo $_POST['t'];
?>

它返回未定义。

how can i get value of string in function1 returned in function2 i.e

function fnc1(){
var text = fnc2("Pencils");
alert(text);
}

function fnc2(mytext){
$.post("process.php", {t:mytext}, function(data){
return data;
});
}

In process.php

<?php
echo $_POST['t'];
?>

it is returning undefined.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷︶言冷语的世界 2024-10-29 17:01:55

您不能从这样的 ajax 请求中返回值。唯一可能的方法是将 async 设置为 false,然后将响应保存到变量并在 ajax 调用之外返回该响应。但这可能不是您想要的,因为它会在等待响应时锁定。

您可以将要执行的功能传递给第二个方法,如下所示:

function fnc1(){
   fnc2("Pencils", function(data) { alert(data) });
}

function fnc2(mytext, callback){
   $.post("process.php", {t:mytext}, callback);
}

You can't return values from ajax requests like that. The only way that would be possible is to set async to false and then save the response to a variable and return that outside the ajax call. But this probably isn't what you want as it will lock while waiting for the response.

You could pass the function you want to perform to the 2nd method like this:

function fnc1(){
   fnc2("Pencils", function(data) { alert(data) });
}

function fnc2(mytext, callback){
   $.post("process.php", {t:mytext}, callback);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文