admin管理员组文章数量:1345007
Dot notation allows for accessing objects with a '.' Cannot figure out why this is happening. I have the following success function, as part of a jQuery $.ajax function.
success: function(data){
console.log('data = ' + data);
console.log('data.president = ' + data.president);
console.log('data.adviser = ' + data.adviser);
}
This, oddly, results in the following browser log:
data = {"president":1,"adviser":1}
data.president = undefined
data.adviser = undefined
I must be missing something painfully obvious. Can somebody enlighten me?
Dot notation allows for accessing objects with a '.' Cannot figure out why this is happening. I have the following success function, as part of a jQuery $.ajax function.
success: function(data){
console.log('data = ' + data);
console.log('data.president = ' + data.president);
console.log('data.adviser = ' + data.adviser);
}
This, oddly, results in the following browser log:
data = {"president":1,"adviser":1}
data.president = undefined
data.adviser = undefined
I must be missing something painfully obvious. Can somebody enlighten me?
Share Improve this question edited Aug 15, 2017 at 21:39 Machavity♦ 31.7k27 gold badges95 silver badges105 bronze badges asked Mar 8, 2016 at 15:25 cdwyercdwyer 6977 silver badges23 bronze badges 5-
3
I would suggest using mas in your
console.log
's instead of string concatenation. For example, see the difference betweenconsole.log('data = ' + {})
andconsole.log('data = ', {})
– Stryner Commented Mar 8, 2016 at 15:31 -
data
is a string. The point is that the console omits the " at the edges of it, making it resemble to an object, but it is not. It is the JSON serializazion of the object. Try add dataType: 'json' to the ajax request to convert it automatically to js object. – morels Commented Mar 8, 2016 at 15:37 -
@Stryner Interesting. Can you elaborate on why mas are preferable? I ran that: concatenation returns
data = [object Object]
and mas returndata = Object {}
– cdwyer Commented Mar 8, 2016 at 15:38 -
2
Commas are preferable because they preserve the type of the objects being logged. With string concatenations, all objects will be changed to
[object Type]
, which gives you less information. In the console I use (Firebug for Firefox), I'm able to inspect the object that's logged; I'm not sure if that's universal. – Stryner Commented Mar 8, 2016 at 15:44 - @Stryner very helpful, I appreciate the info. Thanks!! – cdwyer Commented Mar 8, 2016 at 15:45
3 Answers
Reset to default 8The data would have to be an Object to be accessed by a dot .
.
It's a string now.
You need to parse it using for example:
data = JSON.parse(data);
Set dataType: "json"
as ajax option so jQuery would parse your string data
to javascript object
You define the data elements has strings, attributes of an object need to be declared without quotes, like this:
data = {president:1,adviser:1}
in that case you got the expected result
data.president = 1
data.adviser = 1
本文标签: jqueryJavascript Dot NotationUndefinedStack Overflow
版权声明:本文标题:jquery - Javascript Dot Notation = Undefined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743776977a2537160.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论