多行参数

时间:2012-10-23 10:43:28

标签: javascript titanium-mobile

[
{
"_id": "Some Comments.",
"Loan Name": "College Access",
"Description": "Some Comments.",
"Signer": "Some Comments.",
"Co-signer": "Some Comments.",
"Interest Rate": "0.0525",
"Deferment": "Some Comments."
}]

这是json am使用的。我想检索项目中的Loan Name值,但是有一个空格存在,如果我通过多行标记问题直接给出贷款名称。我不知道如何解决它。我怎么能访问java脚本中的值。

请帮助解决这个问题。

先谢谢。

2 个答案:

答案 0 :(得分:1)

做到这一点

 alert ( json[0]["Loan Name"]);

Working DEMO

答案 1 :(得分:1)

数组表示法也适用于JSON。由于您只有一个包含一条记录的数组,因此没有父级:

var test=[
{
"_id": "Some Comments.",
"Loan Name": "College Access",
"Description": "Some Comments.",
"Signer": "Some Comments.",
"Co-signer": "Some Comments.",
"Interest Rate": "0.0525",
"Deferment": "Some Comments."
}]

alert(test[0]['Loan Name']);

作品