ar-6ren">
gpt4 book ai didi

javascript - vuejs 中的 boolean 在服务器上变为 1

转载 作者:行者123 更新时间:2023-11-28 13:07:30 25 4
gpt4 key购买 nike

我正在从前端向后端发送一个值,该值是一个 boolean 值。在服务器上时我这样做

dd($request);

我可以看到我收到了 true,例如:

      "displaySlug" => array:2 [
"type" => "boolean"
"name" => true
]

稍后当我循环访问从页面获取的参数数组时,如下所示:

dump($key .': ' . $value['name'] .'; type: '.$value['type']);

现在它打印出这个:

"displaySlug: 1; type: boolean"

当我将其保存到数据库时,它也会保存为数字而不是 boolean 值,它会变成 1。

$setting = new Setting(); 
$setting->key = $key;
$setting->type = $type;
$setting->value = $value;
$this->settings()->save($setting);
return true;

value 是 boolean 值存储为 1 的位置,我想将其存储为 true,即使它只是数据库中的一个字符串

我希望它在数据库中是 boolean 值。我该怎么做才能得到 boolean 值而不是数字?

我保存的列是字符串列。

最佳答案

在 PHP 中打印/转储 boolean 值时,它会被转换为字符串。

A boolean TRUE value is converted to the string "1". Boolean FALSE is converted to "" (the empty string). This allows conversion back and forth between boolean and string values.1

你可以convert a string back to a boolean :

$value = (bool)$valueFromDatabase;

请记住:

When converting to boolean, the following values are considered FALSE

  • the boolean FALSE itself
  • the integer 0 (zero)
  • the float 0.0 (zero)
  • the empty string, and the string "0"
  • an array with zero elements
  • the special type NULL (including unset variables)
  • SimpleXML objects created from empty tags2 Anything else is considered truthy.

无需显式转换为 bool,只需使用字符串的 true/falsey 转换(请参阅 PHP type comparison tables 了解更多信息)。

$valueFromDatabase= 0; //false 
if (!$valueFromDatabase) { //0 is falsey, negated yields truthy expression
//action to take server-side when value is false
}
$dataForJSONOutput = array('value' => $valueFromDatabase);
//use this in Javascript code - e.g. VueJS
echo '<script type="text/javascript">var values = '.json_encode($dataForJSONOutput).'; </script>;

查看 this playground example 中的演示

<小时/>

1 http://php.net/manual/en/language.types.string.php#language.types.string.casting 2 http://php.net/manual/en/language.types.boolean.php#language.types.boolean.casting

关于javascript - vuejs 中的 boolean 在服务器上变为 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45362043/

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