gpt4 book ai didi

javascript - 自定义字符串 - 丢失 : after property list

转载 作者:行者123 更新时间:2023-12-02 19:57:37 25 4
gpt4 key购买 nike

我一直致力于使用我编写的 php 类来编译 $.ajax 数据。数据出来是这样的:

{ 
0: [
{ Status : "example status 2"
, Contact ID Number : "1"
, Date Entered : "2011-06-15"
, Date Assigned : "2011-06-15"
, Date Last Modified : "2011-06-15"
, Deceased Date : ""
, Linked To Registrant 1 : "Leona Brown"
, Relationship 1 : "Father"
, Authorization 1 : "1"
, Linked To Registrant 2 : "Henry Sale"
, Relationship 2 : "Husband"
, Authorization 2 : "1"
, Location : "Hamilton Harron Funeral Home"
, Sales Manager : "Dan Thompson"
, Counselor : "Mike Brown"
, Registration Number : "1"
, Registration Date : "2001-05-11"
, Program 1 Number : "2"
, Program 1 Date : "2003-11-05"
, Program 1 Name : "Non Registrant Test Program - Advantage"
, Program 2 Number : "--"
, Program 2 Date : "--"
, Program 2 Name : "--"
, First Name : "Onelia"
, Last Name : "Garcy"
, Address Location 1 : "home"
, Address 1 : ""
, City 1 : "Houston"
, State/Province 1 : "Texas"
, Zip/Postal Code 1 : "77019"
, Home Phone : "--"
, Work Phone : "--"
, Mobile Phone : "--"
, Pager : "--"
, Other Phone : "--"
, Email : ""
, Sales Type : "Pre-Need"
, Note 1 : "This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. This is Note 3. "
}
]
, 1: [
{ Status : ""
, Contact ID Number : "2"
, Date Entered : "2011-07-02"
, Date Assigned : "2011-07-02"
, Date Last Modified : "2011-07-02"
, Deceased Date : ""
, Linked To Registrant 1 : "--"
, Relationship 1 : "--"
, Authorization 1 : "--"
, Linked To Registrant 2 : "--"
, Relationship 2 : "--"
, Authorization 2 : "--"
, Location : "Floral Haven Funeral Home "
, Sales Manager : "Jayson Gordon"
, Counselor : "Henry Murdoc"
, Registration Number : "3"
, Registration Date : "2003-12-02"
, Program 1 Number : "4"
, Program 1 Date : "2004-03-05"
, Program 1 Name : "Non Registrant Test Program - Advantage"
, Program 2 Number : "--"
, Program 2 Date : "--"
, Program 2 Name : "--"
, First Name : "Leo"
, Last Name : "Brown"
, Address Location 1 : "home"
, Address 1 : "5330 Ridge Rd "
, City 1 : "Burlington"
, State/Province 1 : "Ontario"
, Zip/Postal Code 1 : "LVL7N9"
, Home Phone : "9053919735"
, Work Phone : "--"
, Mobile Phone : "9057303737"
, Pager : "--"
, Other Phone : "--"
, Email : "hmind@dont.com"
, Sales Type : "PN to AN"
, Note 1 : "This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. This is Note 5. "
}
]
, 2: [
{ Status : "example1 status"
, Contact ID Number : "3"
, Date Entered : "2011-09-05"
, Date Assigned : "2011-09-05"
, Date Last Modified : "2011-09-05"
, Deceased Date : ""
, Linked To Registrant 1 : "Onelia Gary"
, Relationship 1 : "Wife"
, Authorization 1 : "1"
, Linked To Registrant 2 : "--"
, Relationship 2 : "--"
, Authorization 2 : "--"
, Location : "First Memorial Funeral Services"
, Sales Manager : "Dan Thompson", Counselor : "Steve Brown"
, Registration Number : "5"
, Registration Date : "2010-11-11"
, Program 1 Number : "7"
, Program 1 Date : "2011-08-19"
, Program 1 Name : "Non Registrant Test Program - Dignity"
, Program 2 Number : "6"
, Program 2 Date : "2011-07-03"
, Program 2 Name : "Non Registrant Test Program - Advantage"
, First Name : "Henry"
, Last Name : "Murdoc"
, Address Location 1 : "company"
, Address 1 : "9055 Harvy Rd. 4"
, City 1 : "Burlington"
, State/Province 1 : "Ontario"
, Zip/Postal Code 1 : "L7L5Z7"
, Home Phone : "9055679602"
, Work Phone : "9057455209"
, Mobile Phone : "--"
, Pager : "--"
, Other Phone : "--"
, Email : "pewter@live.com"
, Sales Type : "At-Need"
, Note 1 : "This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. This is Note 6. "
}
]
}

Firebug 报告此错误:

missing : after property id .../view_contacts_search_1.php# Line 188

实例化变量时失败:

<script type='text/javascript' >
$(document).ready(function(){
var data = <?php echo($data)?>;

你能找出缺少的元素是什么/在哪里吗?我花了几个小时试图解决这个问题,但它让我难住了。刚接触 javascipt 和 jquery 也没有帮助:)

最佳答案

您的属性名称是数字 - 这不是有效的 JavaScript。尝试重命名顶级属性或将它们设置为字符串。

这些都是有效的替换:

{ 
_0: [ ...

{
number0: [ ...

{
'0': [ ...

但老实说,最好将属性名称加引号字符串以避免此类问题。

关于javascript - 自定义字符串 - 丢失 : after property list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8421844/

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