将php数组编码为js变量缺少一些数据?

siv*_*eep 6 javascript php json object multidimensional-array

我无法从angularjs中的php数组中获取interview_docs数据.我尝试了很多json编码选项,但它没有问过.如何在js中获取interview_docs数据这是我的数组:

Array(
[id] => 1
[tag] => 2
[title] => Test
[job_submission_id] => 0
[job_id] => 14
[candidate_id] => 55
[mail_to] => test@gmail.com
[cc_to] => test@gmail.com
[interviewer] => test@gmail.com
[interview_type] => 1
[interview_date] => 2017-10-04
[from_time] => 00:00:00
[to_time] => 01:00:00
[to_date] => 
[location] => 
[time_zone] => Asia/Kolkata
[status] => 1
[comments] => dwedfwef
[created_by] => 1
[modified_by] => 1
[created_at] => 2017-10-03 12:21:13
[updated_at] => 2017-10-03 12:21:13
[job_title] => Test
[candidate_name] => New t

[candidates] => Array
    (
        [id] => 55
        [first_name] => New
        [last_name] => t
    )

[jobs] => Array
    (
        [id] => 14
        [code] => 10
        [title] => Test
    )

[interview_docs] => Array
    (
        [0] => Array
            (
                [id] => 1
                [interview_id] => 1
                [unique_name] => 2017_10_roa2XKlIDc9gmzmO7TK37rsfuX3YRigqUxbvIYWe.txt
                [name] => first.png
            )

        [1] => Array
            (
                [id] => 2
                [interview_id] => 1
                [unique_name] => 2017_10_6RaAm3MU5ZZ1x4l3q8VLYNhUkgvS3v2ljNZVizm1.png
                [name] => Screenshot (15).png
            )

    )
Run Code Online (Sandbox Code Playgroud)

)

当我这样做:var data = <?php echo json_encode($array); ?>; console.log(data); 我得到了这个

interview_docs:Array(0)
length:0
 __proto__:Array(0)
Run Code Online (Sandbox Code Playgroud)

我无法从angularjs中的php数组中获取interview_docs数据.我尝试了很多json编码选项,但它没有问过.如何获取interview_docs数据

小智 -1

首先你必须将die() 编码为 JSON,然后你可以在 .js 中console.log()它:

die(json_encode($array));
Run Code Online (Sandbox Code Playgroud)