Javascript jQuery kullanarak otomatik tamamlama - sorun

0 Cevap php

I am trying to use the autocomplete script on http://www.devbridge.com/projects/autocomplete/jquery/.

Şimdi, indirilen kod arama komut dosyası yoktu. Işe yaramadı - Ben kendi PHP script yaptı. Ben devbridge en serviceUrl (mutlak) kullanmaya çalışıyorum, ama çok çalışmak olmadığını duyuyorum. Sitede yerel versiyon (ay) de sitemde çalışıyor. Ancak geri arama ile bir çalışmaz.

İşte ben denedim adımlar şunlardır:

I) İndirilen http://www.devbridge.com/projects/autocomplete/jquery/ dizin.

II) 1) Approach one: I changed serviceUrl line in index.html to:

serviceUrl: 'http://www.devbridge.com/projects/autocomplete/service/autocomplete.ashx',

Yine, otomatik tamamlama sadece yerel sürüm çalışır.

(ServiceUrl iyi çalışıyor gibi görünüyor - tarayıcıda http://www.devbridge.com/projects/autocomplete/service/autocomplete.ashx?query=a deneyin.

2) iki Yaklaşım: Ben kendi autocomplete.php yazmaya çalıştım, ama bu da işe yaramadı:

<?php

$temp=$_GET["query"];

 // Return some dummy data that matches the format.
 //json_encode introduces extra quotes ", so I decided to manually format the result

$result="{ query:'$temp',suggestions:['${temp}beria','${temp}byan Arab Jamahiriya','${temp}echtenstein','${temp}thuania'],data:['${temp}lr,'${temp}ly,'${temp}li,'${temp}lt] }";

header('Content-type: application/json');

echo $result;
?>

Her tuşa basın, doğru istekleri benim sunucuda autocomplete.php için yapılıyor diye kontrol. (Ve "görünüşte", php script doğru çıkış veriyor). Ama otomatik tamamlama çalışmıyor.

Hata ayıklama konusunda herhangi bir işaretçiler? Ben vb bazı dosyalar / modüller eksik muyum?

Saygılarımızla,

JP

0 Cevap