1

我有一个从 JSONP 文件收到的 javascript 对象。

该对象包含多个“选项”和“结果”,用于在用户点击时调整页面上的html。

现在,我可以检查 json 文件中是否存在 HTML 字符串(通过 json 引用插入)。我想要做的是获取该字符串,在 json 文件中找到下一个“结果”或“选项”,然后返回该“选项”或“结果”值,以便我可以使用它来更改 html...

我怎么做?我一直在尝试 .indexOf 方法来查找当前索引,但这并不能真正帮助我找到像“选项”这样的特定属性。

这是我用来遍历 JSONP 文件并查找当前字符串是否存在的代码。

$.ajax({
    url: "http://www.myurl.com/jsonp.php",
    type: "GET",
    dataType: "jsonp",
    jsonpCallback: "otmjsonp",
    async: false,
    success: function (JSON) {
        $(".result").on("click", function () {
            var currentResult = $(this).text(); //.result is the line of HTML the user has clicked
            for (var playerSelection in JSON) {
                if (JSON.hasOwnProperty(playerSelection)) {
                    if (JSON[playerSelection] === currentResult) {
                        alert("this selection exists in the JSON");
                    }
                }
            }
        })
    }
});

这是大型 JSONP 文件的一个非常简单的版本:

otmjsonp({
"situation1" : "Your opponent is trying to tackle you", "playerPrompt1" : "What will you do first?", 

"option1" : "avoid him",

    "result1" : "he tackles you",

        "situation2" : "you were tackled", "playerPrompt2" : "Your opponent begins to slow down",

        "option2" : "chase after him",
            "result2" : "you caught up",
)}

等等等等

由于我完全陷入困境,即使是模糊的想法/方向也会受到赞赏。

4

4 回答 4

1

如果您重新构建 JSON 以将选项/结果嵌套在相应的父级中,则很容易获得所有可能的选项。您需要将代码更改为:

$.ajax({
url: "http://www.myurl.com/jsonp.php",
type: "GET",
dataType: "jsonp",
jsonpCallback: "otmjsonp",
async: false,
success: function (JSON) {
    $(".result").on("click", function () {
        var currentResult = $(this).text(); //.result is the line of HTML the user has clicked

     if (JSON.hasOwnProperty(playerSelection)) {
      for (var outcome in JSON[playerSelection]) {
       if (JSON[playerselection].hasOwnProperty(outcome)) {
        alert("This is the next outcome " + JSON[playerSelection][outcome]);
       }
      }
     }
   })
  }
});
于 2013-06-22T23:12:40.783 回答
1

我建议在进一步进行之前考虑并组织您的 JSON 结构。有组织和逻辑的 JSON 将使 Javascript 更容易。对于这种情况——尽我所能从描述和示例中收集到——我认为一个具有逻辑意义并在以后的 Javascript 中证明有用的 JSON 结构可能看起来像这样:

{
  'situations': [
    {
      'description': 'Your opponent is trying to tackle you.',
      'prompt': 'What will you do?',
      'options': [
        {
          'action': 'Avoid him.',
          'result': 'He tackles you.'
        },
        { /* another option (an action plus a result) */ }
      ]
    },
    { /* another situation (a description, a prompt, and an array of options) */ }
  ]
}

我知道这不是您问题的完整答案,但我认为这将是开始重新思考您的方法的好地方。

于 2013-06-23T00:13:14.960 回答
1

这里的部分问题是您如何将 UI 与数据初始化相结合。我认为您真正想要做的是将获取数据的 JSON 请求与点击处理分开。

$(function() {

  var setupHTML, 
      handleClick,
      updateHTML,
      originalData,
      resultData;

  updateHTML = function(JSON) {
    // Add or activate the html the person is clicking
    $('.result').text()
  };

  handleClick = function(e) {
    var currChoice = $(e.target).text();

    if (resultData === undefined) {
      e.stopPropagation();
      e.preventDefault();
      return;
    }

    for (var ps in resultData) {
      if (resultData.hasOwnProperty(ps) && resultData[ps] === currChoice) {
        resultData = resultData[ps];
        updateHTML(resultData);
      }
    }
  }

  $('.result').on('click', handleClick)


  $.ajax({
    url: "http://www.myurl.com/jsonp.php",
    type: "GET",
    dataType: "jsonp",
    jsonpCallback: "otmjsonp",
    async: false,
    success: function(data) {
      resultData = origData = data;

      // make the UI visible
      setupHTML(JSON);
    }
    });

});
于 2013-06-23T00:30:49.973 回答
0

您可以访问 Object 属性,例如:Object.propertyObject['some property']。您可以使用for in循环来循环对象和大多数数组,例如:

var property, value;
for(var i in Object){
  property = i;
  value = Object[i];
}
于 2013-06-22T23:19:53.057 回答