- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
json_encode
具有私有(private)属性的 PHP 对象json_decode
请求发送到的 AJAX URL 中的 PHP 对象在第 3 步中,json_last_error返回 3(JSON_ERROR_CTRL_CHAR 控制字符错误,可能编码不正确
)
class Stream {
private $limit;
private $type;
private $sort;
private $offset=0;
private $userID;
private $catID;
private $content = array();
private $num_posts;
function __construct(){
$a = func_get_args();
$i = func_num_args();
if (method_exists($this,$f='__construct'.$i)) {
call_user_func_array(array($this,$f),$a);
}
}
function __construct5($limit, $type, $sort, $userID, $catID){
$this->limit = $limit;
$this->type = $type;
$this->sort = $sort;
$this->userID = $userID;
$this->catID = $catID;
//$this->num_posts = $this->retrieveTotal();
//$this->setContent();
}
function __get($name) {
if(isset($this->$name)){
return $this->$name;
}
}
public function encodeJSON(){
foreach ($this as $key => $value){
if($key != 'content'){
$json->$key = $value;
}
}
return json_encode($json);
}
public function decodeJSON($json_str){
$json = json_decode($json_str, true);
echo '<br>error: '.json_last_error();
foreach ($json as $key => $value){
$this->$key = $value;
}
}
}
//create the object to be encoded
$strm = new Stream(5, 'toc', ' ', 1, ' ');
/*this test works
$d=$strm->encodeJSON();
$st = new Stream();
$st->decodeJSON($d);
*/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
//load more posts
$("#active").live("click", function() {
var stream= '<?= $strm->encodeJSON();?>';
var dataString = 'stream='+stream;
var request = $.ajax({
type: "POST",
url: "ajax/loadmore.php",
data: dataString,
beforeSend:function(data){
$('.load-more').html('<img src="ajax/loader.gif" alt="Loading..." />');
},
success: function(html) {
$('#active').remove();
$('#stream').append(html);
}
});
//ajax error reporting
request.fail(function(jqXHR, textStatus) {
$('#active').html(textStatus);
});
});
</script>
<a class='load-more' id='active'>load more posts</a>
require_once'../../classes/stream.class.php';
$strm = new Stream();
$strm->decodeJSON($_POST['stream']);
这段代码
$d=$strm->encodeJSON();
$st = new Stream();
$st->decodeJSON($d);
工作正常。这会让我相信 AJAX 正在干扰解码。
我还尝试将 $json = json_decode($json_str, true);
更改为 $json = json_decode(utf8_encode($json_str), true);
但什么也没有变化。
注意:建议我将类属性公开并不是解决方案
编辑:当我回显字符串时,{
被发送到decodeJSON,它测试为 valid
“限制”:“5”,
“类型”:“目录”,
“种类”: ” ”,
“偏移”:“0”,
“用户ID”:“3”,
“猫ID”:“”,
“帖子数量”:“2”
}
此屏幕截图显示了发送到decodeJSON($json_str) 的参数$json_str 和错误代码。
最佳答案
JSON_ERROR_CTRL_CHAR
的原因返回的原因 JSON_ERROR_CTRL_CHAR
不是因为字符编码(即utf8或iso)。当数据编码不正确并且生成的字符串不是有效的 JSON 时,它会遇到此错误。如果您混合使用单引号 '
和双引号 "
它也可能会干扰编码过程,保持一致很重要。
话虽如此,
它很可能会返回错误,因为您一开始就没有发送任何实际数据。您通过请求发送一个空字符串。好吧,不是真的,你实际上是在发送字符串
<?= $strm->encodeJSON();?>
然后变成
json_encode("<?= $strm->encodeJSON();?>");
在你的loadmore.php中。但如果你使用正确的 php 标签 <?php ?>
无论如何它都是空的因为你没有回应任何东西。
改变
var stream= '<?= $strm->encodeJSON();?>';
到一个正确的 php 标签,并确保你确实输出了一些东西,否则 stream
只是一个空字符串。
var stream= '<?php echo $strm->encodeJSON(); ?>';
它应该可以正常工作。
一般来说,通过 AJAX 发送数据时,您应该 encodeURIComponent()
它可以转义任何特殊字符。
data: "stream="+encodeURIComponent(stream),
$json = json_decode(urldecode($json_str), true);
<强> .live
已弃用
.live
函数从 1.7 开始已弃用,您现在应该使用函数 .on
附加事件处理程序。在您的情况下,您最好使用简写函数 .click()
.
链接必须有href
<a>
标签必须有 href 属性,否则它就不是链接,您不妨使用 <div>
如果你不打算使用它。至少你应该有 href="#"
然后添加 event.preventDefault()
.
文件名
命名文件时,尽量避免使用句点 stream.class.php
,它们是等待发生的事故。某些系统(尤其是较旧的系统)无法正确解释它们,并且您将很难重命名所有系统。标准约定建议对稳定的文件系统使用下划线或连字符。
这对我来说有效(所有文件都在同一文件夹中)
HTML 默认值 (index.php)
<?php
include_once("stream.php");
?>
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
//load more posts
$(document).ready(function(){
$("#active").click(function(e) {
e.preventDefault();
var stream = '<?php echo $strm->encodeJSON();?>';
var dataString = stream;
var request = $.ajax({
type: "POST",
url: "loadmore.php",
data: "stream="+encodeURIComponent(stream),
dataType: "html",
beforeSend:function(data){
$('.load-more').html('<img src="ajax-loader(1).gif" alt="Loading..." />');
},
success: function(html) {
$('#active').remove();
$('#stream').append(html);
}
});
//ajax error reporting
request.fail(function(jqXHR, textStatus) {
$('#active').html(textStatus);
});
});
});
</script>
</head>
<body>
<a href="#" class='load-more' id='active'>load more posts</a>
<div id="stream"></div>
</body>
</html>
流.php
<?php
class Stream {
private $limit;
private $type;
private $sort;
private $offset=0;
private $userID;
private $catID;
private $content = array();
private $num_posts;
function __construct(){
$a = func_get_args();
$i = func_num_args();
if (method_exists($this,$f='__construct'.$i)) {
call_user_func_array(array($this,$f),$a);
}
}
function __construct5($limit, $type, $sort, $userID, $catID){
$this->limit = $limit;
$this->type = $type;
$this->sort = $sort;
$this->userID = $userID;
$this->catID = $catID;
//$this->num_posts = $this->retrieveTotal();
//$this->setContent();
}
function __get($name) {
if(isset($this->$name)){
return $this->$name;
}
}
public function encodeJSON(){
foreach ($this as $key => $value){
if($key != 'content'){
$json->$key = $value;
}
}
return json_encode($json);
}
public function decodeJSON($json_str){
$json = json_decode(urldecode($json_str), true);
foreach ($json as $key => $value){
$this->$key = $value;
}
}
}
//create the object to be encoded
$strm = new Stream(5, 'toc', ' ', 1, ' ');
?>
loadmore.php
<?php
include_once('stream.php');
$strm = new Stream();
$strm->decodeJSON($_POST['stream']);
//Output a private property
echo $strm->__get("type");
?>
关于php - json_decode + ajax + 私有(private)属性 = 灾难 [错误 : JSON_ERROR_CTRL_CHAR],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10005796/
如果需要在类外访问静态(例如单例),可以选择公共(public)静态而不是私有(private)静态,而当不需要公开函数时首选私有(private)静态(否则未命名的命名空间就可以了)——在这种情况下
在互联网上进行了一些搜索,但找不到简单的答案。我的问题集是在 Android 框架中使用 Java,但我相信这也是标准的 Java 行为。我理解 final 和 private 的定义,它们都用于变量
我有这个代码: public final class Board { private final int[][] blocks; private final int N; pr
对我来说,过去作为 Objective-C 开发人员很简单。一个类需要公开的每个字段都是一个属性,每个私有(private)字段都是一个没有 getter 或 setter 的实例变量。但我经常看到人
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我有一个在 Docker 容器中运行的应用程序。它需要来自公司私有(private) NPM 注册表(Sinopia)的一些私有(private)模块,并且访问这些需要用户身份验证。 Dockerfi
我试图理解 C# 使用 getters 和 setters 自动声明变量与 java 声明之间的区别。 在java中我通常这样做: private int test; public int getTe
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我目前正在使用 Objective-C(适用于 iPhone)构建游戏。 为此,出于性能/复杂性原因,我略微打破了 MVC,并为 View (渲染器)提供了对模型的直接引用。这是因为它应该以 60fp
我已经在 ubuntu 上成功配置了 2 个虚拟主机站点(基于名称的虚拟主机)。我的 apache 版本是 2.2.22。 这两个站点都在本地主机上工作。 /etc/hosts 条目 127.0.0.
考虑下面的类 public class A { private final Map cache; public HeavyObject getThing(); } 假设不能泄漏对缓存
我有一个类,它有一个方法,我希望它只能被它的子对象访问,而不能被这个包中的其他类访问。 Modifier | Class | Package | Subclass | World ———————
本文实例讲述了JavaScript中的公有、私有、特权和静态成员用法。分享给大家供大家参考。具体分析如下: 下面的内容是在《JavaScript.DOM高级程序设计》里面摘抄出来的,比较容易理解,
我有一个用例,我已将其简化为以下程序: public class A { private int x = 100; class B { private int y = ne
问题: 类声明如下: class Select { public: template static Iterator function(Iterator , Iterator , bo
我是一名初级 PHP 程序员。我还有很多东西要学。这就是我问这个问题的原因。在一个类中,您有一个公共(public)函数,您可以从该类外部调用它。有时你有一个私有(private)函数,你可以在私有(
问题是: 何时使用私有(private)函数,何时使用嵌套函数? (我在问 F# 但也许答案可能与其他功能语言相关) 一个小例子 namespace SomeName module BinaryRea
我发现工作表中仍然可以使用私有(private)函数。它们是隐藏的,但如果用户输入他们的名字,他们就会被调用。为什么?它应该以这种方式工作吗?有没有办法完全阻止用户定义的函数在 VBA 项目之外使用?
所以我最近开始尝试使用 Kotlin,我偶然发现了这个: If a top-level declaration is marked private, it is private to the pack
我是一名优秀的程序员,十分优秀!