post 相关问题

POST是HTTP协议方法之一;当客户端需要将数据发送到服务器时(例如上载文件或提交完成的表单)时使用它。 post这个词有几个含义,但这个标签特别是关于HTTP POST请求。

使用dto对象数组构建HttpMethod POST请求

我需要将对象数组作为请求正文发送到POST API,如下所示。 [{“ k1”:“ v1”,“ k2”:“ v2”,“ k3”:1}]我的dto文件看起来像下面的公共类Request {@ ...

回答 1 投票 0

解决了从Arduino MKR1010发布到Webhook for IFTTT的问题

我的目标是发出发布请求以触发IFTTT网络摘机操作。我正在使用MKR1010板。我能够连接到网络并使用云打开和关闭连接的LED ...

回答 1 投票 -1

抓取此网站

我正在尝试使用以下负载来模仿来自此站点的POST请求:来自此URL:https://surviv.io/stats/gert1这是我试图模仿的请求的图像。这是我当前在...中的代码...

回答 1 投票 0

如何从Django应用程序视图中检索帖子数据

所有我对jquery和Django都是陌生的。单击ID为'submit_data'的按钮时,我使用以下代码发布。是否可以从视图中检索字典{data_key:'myString'} ....

回答 3 投票 0

查找网站添加请求标头的位置

我正在一个发出POST请求但添加一些自定义请求标头(X-TEST-1)的网站上执行操作。出于我的好奇心,我试图查看网站在代码中的哪些位置设置了这些...

回答 1 投票 0

RestSharp和TLS 1.1

使用RestSharp和TLS 1.1是否存在任何已知问题?当前,我们使用RestSharp将发帖请求发送给供应商。该供应商将不再接受TLS 1.0连接并更改...

回答 2 投票 13

“ org.json.simple.JSONArray无法转换为org.json.simple.JSONObject”

我正在尝试解析文件,以便将JSON数据发布到需要访问令牌的本地平台中。但我收到此错误:无法将org.json.simple.JSONArray强制转换为org.json.simple...。

回答 1 投票 0

在赛普拉斯中,我如何在正文中包含参数的POST API请求?

我正在用赛普拉斯编写端到端测试,我想对应用程序发出的网络请求存根。具体来说,我想将多个具有...

回答 1 投票 5

问题可能导致POST响应返回JavaScript前端/节点js返回

im正在尝试从我的javascript应用程序连接到我的本地节点服务器路由(http:// localhost:3000 / user-ragnarok-controller / saveragnarokuser /),但没有收到任何响应。服务器是...

回答 1 投票 0

从JS前端访问Flask响应

我正在尝试使用JS和Flask构建异步文件上传器。到目前为止,将文件从JS发送到Flask的过程似乎工作正常,但是如何从Flask返回任何信息...

回答 1 投票 1

React bootstrap modal如何首先发送发布请求,然后在提交值时关闭modal

我正在以自举模式制作表格。当您按下提交时,表单数据应被过帐并且模式应关闭。现在,我的代码的结构方式已关闭,但我认为我的请求没有'...

回答 1 投票 0

未在http Flutter上设置标题

我正在使用Flutter构建应用,并且在尝试利用我们的api访问数据库数据时,出现错误400,提示未在请求中设置标头。我已经尝试了docs和...

回答 1 投票 0

AJAX POST的数据表不起作用(使用加载的ajax)

我正在尝试执行此示例https://datatables.net/blog/2017-03-31除了ajax请求之外,其他所有功能都可以正常工作,问题是我正在尝试从数据库返回数据,并且几乎不知道怎么做...

回答 1 投票 0

如何为评论组件显示不同的评论集? (VueJS,Firebase)

我正在尝试创建一个社交媒体应用,并在每个帖子上添加评论。我可以显示评论,但是每个帖子都显示相同的评论集。我正在努力弄清楚如何显示不同的...

回答 1 投票 -1

由循环内条件附加td的变化

我正在使用javascript将行和列附加到表中。但是我需要根据`$ .post()响应中的条件,将td中的类名之一转换为其他类。我是这样做的:让arr ...

回答 3 投票 1

我不想用发帖请求重新加载页面

我创建表单,弹出窗口(与表单位于同一文件中),以及当用户单击按钮时创建发布请求的脚本,但是当我单击按钮时,页面重新显示了...

回答 1 投票 0


PHP-POST / GET

感谢您调查我的问题。它与PHP POST / GET函数完全相关。这是我的代码:index.php  ]]]]] ...instead of <?php echo $_POST["story"]; ?> I want to print 200+ words story relating to what User has chosen. 使用条件if()或switch语句来查看您的$ _POST ['story']是否已设置并等于您选择的故事之一。 //--> ON story_get.php //--> (Provided the $_POST variable in fact has the values assigned to the global array) //--> use var_dump($_POST) on story_get.php to check if the global $_POST array has //--> key/value pairs coming from your index.php page // set variables that have your story information. $seaside = //--> Your story about the sea side $mountain = //--> Your story about the mountain $output = null; //--> Empty variable to hold display info from conditional //--> Now to see if the form element that selects story is set using isset if(isset($_POST['story']){ //--> Now that we know the input in the form that holds the value for story isset //--> Check to see if it is set and then declare a variable and assign it to that variable $story = $_POST['story']; if($story === 'sea'){ $output = $seaside; }elseif($story === 'mount'){ $output = $mountain; }else{ $output = //--> Set a default setting that displays output here if neither story is selected. } } 将变量$output回显到您希望在html文档中显示故事内容的位置 <div> <?=$output?> <!--// OR //--> <?php echo $output; ?> </div> 您需要从某个地方获得这个故事。到达那里的几种方法。 如果要从文本文件加载: // Here we sanitize the story ID to avoid getting hacked: $story_id = preg_replace('#[^a-zA-Z0-9_ -]#', '', $_POST['story']); // Then we load the text file containing the story: $path = 'stories/' . $story_id . '.txt'; $story_text = is_file($path) ? file_get_contents($path) : 'No such story!'; 如果要从数据库加载它: $conn = new mysqli($servername, $username, $password, $dbname); $stmt = $conn->prepare("SELECT * FROM stories WHERE story_id = ? LIMIT 1"); $stmt->bind_param("s", $_POST['story']); $stmt->execute(); $result = $stmt->get_result(); $story = $result->fetch_assoc(); $story_text = !empty($story['story_text']) ? $story['story_text'] : 'No such story!'; 这假设您有一个名为stories的表,其中包含字段story_id和story_text。 您还可以有一个单独的文件,将所有故事分配到变量中(假设您确实只有几个,加载未使用的故事对性能的影响很小): $stories['Seaside'] = <<<EOL Here is the seaside story. EOL; $stories['Mountain'] = <<<EOL Here is the mountain story. EOL; 然后在您的故事文件中,“加载”它: $story_text = !empty($stories[$_POST['story']) ? $stories[$_POST['story']] : 'No such story!'; 然后(使用上述任何选项),简单: <?php echo $story_text; ?> 上面的选项中,如果您正在寻找简单易维护的内容,我会选择加载文本文件来获取您的故事文本。祝您讲故事好运。 :) 假设您要使用表单变量inside 您的故事。您需要使用标记{{ place }}之类的标记,并在输出故事文本之前替换它们: $story_text = str_replace('{{ name }}', $_POST['name'], $story_text); $story_text = str_replace('{{ place }}', $_POST['place'], $story_text); 这将“一旦有{{名称}}探索{{地点}} ...”变成“有一次Светослав探索堪察加半岛...” >等 如果我了解你,是真的。但这是不好的解决方案。您应该使用数据库。 <?php session_start(); $_SESSION['story'][] = $_POST["story"]; ?> <html> <body> <center> <h1>Welcome <font color=red><i><?php echo $_POST["name"]; ?></i></font>, age of <font color=red><i><?php echo $_POST["age"]; ?></i></font><br> to the wonderfull land of <br><font color=red><i><?php echo $_POST["place"]; ?></i></font> <?php echo implode('<br>', $_SESSION['story']); ?> <p><a href=index.php>Edit</a> </body> </html>

回答 3 投票 0

如何在php中插入图像和日期

if(isset($ _ POST ['post-submit'])){$ post_category_id = $ _POST ['post_category_id']; $ post_title = $ _POST ['post_title']; $ post_author = $ _POST ['post_author']; $ ...

回答 1 投票 0

我如何在php中插入图像和日期

if(isset($ _ POST ['post-submit'])){$ post_category_id = $ _POST ['post_category_id']; $ post_title = $ _POST ['post_title']; $ post_author = $ _POST ['post_author']; $ ...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.