如何使用参数

时间:2016-03-31 09:55:57

标签: javascript jquery json getjson

我有网址:http://cgncrdev.gandsoft.com/ws/get.php?fcid=gen_ncr_id&origin_id=OR10&suborigin_id=OR13

无论如何,你可以打开它。

我试试这个但没有工作

function gen_ncr_id() {
    $.getJSON(baseUrl + '/ws/get.php?fcid=gen_ncr_id&origin_id=OR10&suborigin_id=OR13', function(data) {
        $.each(data.items, function(key, val) {
            alert(val.gen_ncr_id)
            opt = '<input type="text" value="' + val.gen_ncr_id + '">'
            $(opt).appendTo('#id_ncr')
        })
    })
}

输出:未定义

可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

for (i in 1:2) {
  g <- g + geom_text(x = pos.x[[i]], y = pos.y[[i]], label = paste("Test", i))
}
var data = {"items":[{"gen_ncr_id('OR10','OR13')":"4.13\/4.10.4\/16\/002"}]};
function getPrefixValue(obj, prefix) {
  var result;
  var re = new RegExp('^' + prefix);
  $.each(obj, function(key, value) {
    if (key.match(re)) {
      result = value;
      return false; // break the each loop
    }
  });
  return result;
}
$.each(data.items, function(key, val) {
  var value = getPrefixValue(val, 'gen_ncr_id');
  alert(value);
})