T
T
tigra2015-09-25 14:47:24
PHP
tigra, 2015-09-25 14:47:24

How to refer to an object in JS?

Ajax returns an object in the form

{id: "17", id_name: "20", date: "2015-09-25", address: "В офисе", company: "1234567", timestart: "",…}
       address: "В офисе"
       company: "1234567"
       date: "2015-09-25"
       id: "17"
       id_name: "20"
       office: "1"
       other_info: "test"
       timeend: "11:10"
       timestart: "12:20"

How to refer to the date field?
alert(data.date); returns undefined

Answer the question

In order to leave comments, you need to log in

2 answer(s)
C
Curly Brace, 2015-09-25
@tigroid3

data["date"]
скорее всего конфликт с встроеным в js словом
а вы точно привели то что возвращается? иногда возвращается массив объектов и надо делать data[0]["date"]

Алексей Уколов, 2015-09-25
@alexey-m-ukolov Куратор тега PHP

alert(data.date); возвращает undefined

Неправда ваша. Где-то в другом месте ошибка.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question