在 jQuery ajax 数据中发送一个布尔值

Send a boolean value in jQuery ajax data(在 jQuery ajax 数据中发送一个布尔值)
本文介绍了在 jQuery ajax 数据中发送一个布尔值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Ajax 调用中发送一些数据.其中一个值是设置为 FALSE 的布尔值.在 Ajax 调用的 PHP 脚本中,它总是被评估为 TRUE.有任何想法吗?

I'm sending some data in an Ajax call. One of the values is a boolean set to FALSE. It is always evaluated as TRUE in the PHP script called by the Ajax. Any ideas?

$.ajax({
    type: "POST",
    data: {photo_id: photo_id, 
           vote: 1, 
           undo_vote: false},   // This is the important boolean!
    url: "../../build/ajaxes/vote.php",
    success: function(data){
        console.log(data);
    }
}); 

在上面Ajax中调用的脚本vote.php中,我检查了布尔值:

In vote.php, the script that is called in the above Ajax, I check the boolean value:

if ($_POST['undo_vote'] == true) {
    Photo::undo_vote($_POST['photo_id']);
} else {
    Photo::vote($_POST['photo_id'], $_POST['vote']);
}

但总是满足 $_POST['undo_vote'] == true 条件.

推荐答案

帖子只是文本,而文本在 php 中将评估为 true.一个快速的解决方法是发送一个零而不是错误.你也可以在 PHP 中为你的 true 加上引号.

A post is just text, and text will evaluate as true in php. A quick fix would be to send a zero instead of false. You could also put quotes around your true in PHP.

if ($_POST['undo_vote'] == "true") {
    Photo::undo_vote($_POST['photo_id']);
} else {
    Photo::vote($_POST['photo_id'], $_POST['vote']);
}

然后你可以传入真/假文本.如果那是你喜欢的.

Then you can pass in true/false text. If that's what you prefer.

这篇关于在 jQuery ajax 数据中发送一个布尔值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)