0

我正在尝试将输入字段中的值附加到现有的 JSON 对象中,但我不断收到错误消息。

这是我的代码:

$('#addObjectBtn').click(function() {
            //Inject Property into current object
            var newObjName = $('#newObjectName').val();
            var newObjType = $('#newObjectType').val();
            objStr.View[newObjType + "_100"] = {"BackgroundImage":'""' + newObjName + '""'};
            $('#newObjectPrompt').dialog('close');
        })

编辑:添加 JSON 对象。我正在尝试添加例如另一个按钮。在我的示例中,这将是“Button_100”

{
    "View": {
        "Name": "Untitled3",
        "ImportWidth": 320,
        "ImportHeight": 480,
        "Image_1": {
            "BackgroundImage": "Image.png",
            "Position": [0, 0],
            "Width": 320,
            "Height": 480
        },
        "Button_1": {
            "BackgroundImage": "ButtonTop.png",
            "Position": [61, 83],
            "Width": 217,
            "Height": 58
        },
        "Button_2": {
            "BackgroundImage": "ButtonBottom.png",
            "Position": [81, 114],
            "Width": 205,
            "Height": 73
        },
        "TextField_1": {
            "BackgroundImage": "TextFieldLogin.png",
            "Position": [102, 336],
            "Width": 189,
            "Height": 31
        },
        "Label_1": {
            "Position": [137, 100],
            "Width": 54,
            "Height": 20,
            "Text": "HiRob",
            "FontSize": 18,
            "Color": [0, 0, 0, 1]
        },
        "Label_2": {
            "Position": [43, 342],
            "Width": 72,
            "Height": 20,
            "Text": "LogOut:",
            "FontSize": 18,
            "Color": [0, 0, 0, 1]
        },
        "Label_3": {
            "Position": [115, 234],
            "Width": 126,
            "Height": 20,
            "Text": "AnotherButton",
            "FontSize": 18,
            "Color": [0, 0, 0, 1]
        }
    }
}
4

3 回答 3

5

newObjType已经是一个字符串,您不需要所有这些引号。试试这样:

objStr.View[newObjName + "_100"] = {BackgroundImage: newObjType};
于 2013-01-20T17:43:11.943 回答
3

尝试

objStr.View[newObjName + "_100"] = JQuery.phraseJSON('{"BackgroundImage":"' + newObjType +'"}');

使用phraseJSON有点绕,但它肯定会完成工作,它将JSON字符串转换为JS对象。

编辑: newObjType 已经是一个字符串

或者,可以使用没有 JQuery JSON.parse(string)。

于 2013-01-20T18:47:02.350 回答
1

更新

在移动设备上没有调试工具的情况下,我会推荐WINERE。它为您在桌面上为在移动设备上运行的应用程序提供了相同的控制台和其他东西

此外,查看您的评论,似乎错误在其他地方。您可以选择尝试这种分配方式

var newObjName = $('#newObjectName').val();
var newObjType = $('#newObjectType').val();
var tempObj = {"BackgroundImage": newObjName };
objStr.View[newObjType + "_100"] = tempObj;

老答案

我想错误是SyntaxError: Unexpected token :
我想这是由{"BackgroundImage":'""' + newObjName + '""'};
你在代码中设置属性的方式也是错误的

作为更正,我认为您需要进行 2 处更改

更改您的代码:

{"BackgroundImage":'""' + newObjName + '""'}

{ BackgroundImage : newObjName }

酷,不是吗??

于 2013-01-20T18:26:15.437 回答