2

サーバーでデータが利用できない場合、またはサーバー エラーが発生した場合、またはサーバー データが null の場合、javascript は例外をスローしますobj is null。この例外をキャッチする方法は?

stackoverflow で検索しても結果が得られませんでした。

コードは次のとおりです。

var test1 = new Bloodhound({
    datumTokenizer: function (d) {
        return Bloodhound.tokenizers.whitespace(d.value);
    },
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    remote: {
        url: "http://URL?query=",

        replace: function(url, query) {
            return url + "" + query;
        }
    }
});

test1.initialize();

$('#idOfAutoCompleteTextBox').typeahead({
    hint: true,
    highlight: true,
    minLength: 1
},
{
    name: 'test1',
    displayKey: 'value',
    source: test1.ttAdapter()
});
4

1 に答える 1

0

これがあなたの問題の解決策であるかどうかはわかりませんが、現在、空の結果を処理するときに同じjavascript例外があります(typeahead 0.11.1)。

配列が空の場合のリモート URL ファイルで、JSON 形式ではないものをエコーし​​ます。

JavaScript

  var termekek = new Bloodhound({
    datumTokenizer: Bloodhound.tokenizers.obj.whitespace('megnev'),
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    remote: {
      url: _BASE_ +  'components/com_rexwebshop/include/keres.php?q=%QUERY',
      wildcard: '%QUERY'
    }
  });

  jQuery('.typeahead').typeahead(null, {
    name: 'rs3ws-termekek',
    display: 'megnev',
    source: termekek,
      templates: {
        empty: [
          '<div class="empty-message">',
            '<? echo JTEXT::_('Nincs találat') ?>',
          '</div>'
        ].join('\n'),
        suggestion: Handlebars.compile('<div><strong>{{megnev}}</strong> – {{bruttoar}}</div>')
      }
  });

PHP

  // [collecting data]

  if ( count($rows) == 0 ) 
    echo "_NOT_FOUND_";
  else
    echo json_encode($rows, JSON_UNESCAPED_SLASHES);
于 2015-06-04T14:06:17.270 に答える