首页 文章

CodeIgniter视图中未定义的JSON变量

提问于
浏览
1

为什么我会收到以下错误

遇到PHP错误严重性:警告消息:未定义变量:json文件名:views / search_page.php行号:8遇到PHP错误严重性:警告消息:尝试获取非对象Filename:views / search_page的属性 . php行号:8遇到PHP错误严重性:警告消息:为foreach()提供的参数无效文件名:views / search_page.php行号:8

用这个代码?

search.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Search extends CI_Controller {

    public function index()
    {

        $json = json_decode(file_get_contents('http://search.twitter.com/search.json?q=to%3astackexchange'));

        $this->load->view('search_page', $json);
    }
}

/* End of file search.php */
/* Location: ./application/controllers/search.php */

search_page.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Twitter Test</title> 
</head>
<body>
<?php foreach ($json->results as $result): ?>
    <h2><?php echo $result->from_user; ?></h2>
<?php endforeach ?>
</body>
</html>

1 回答

  • 4

    您需要将传入的变量( $json )分配给名称("json")

    $this->load->view('search_page', array('json' => $json));
    

    也许是一个更明确的例子:

    $this->load->view('search_page', array('myNeatObject' => $json));
    
    // ...then, in your view, you could
    
    <p>This is the JSON: <?php echo print_r($myNeatObject, true) ?></p>
    

    这就是为视图中的访问命名变量的方式 .

相关问题