0

Codeigniter アプリケーションで jQuery オートコンプリートを使用しました。しかし、ソースパスが壊れているため機能していません。

これは私のコードです:

  jQuery(document).ready(function(){
            $('.zipsearch').autocomplete({
                source:'jQueryAutocompleteRelatedFields.php', 
                minLength:2,
                select:function(evt, ui)
                {
                    // when a zipcode is selected, populate related fields in this form
                    this.form.city.value = ui.item.city;
                    this.form.state.value = ui.item.state;
                }
            });
        });

現在、ファイル jQueryAutocompleteRelatedFields.php は次のファイル パスにあります。

www\CI\application\views\search\jQueryAutocompleteRelatedFields.php

localhost\CI\index.php\search\searchItem

私のブラウザのパスです

ソースはどうやって出せばいいの?


SearchITem は、検索コントローラーの下にある関数です。

更新: jQueryAutocompleteRelatedFields.php

     <?php

class DB
{
    const DATABASE = 'inventory';
    const HOST = '127.0.0.1';
    const USERNAME = 'root';
    const PASSWORD = '';

    static private $pdo;

    static public function singleton()
    {
        if (!is_object(self::$pdo))
        {
            self::$pdo = new PDO('mysql:dbname=' . self::DATABASE . ';host=' . self::HOST, 
                                    self::USERNAME, 
                                    self::PASSWORD);
        }
        return self::$pdo;
    }

    private function __construct()
    {

    }

    public function __clone()
    {
        throw new Exception('You may not clone the DB instance');
    }
}

if (!isset($_REQUEST['term']))
{
    die('([])');
}

$st = DB::singleton()
        ->prepare(
            'select product_id, product_code, product_name ' .
            'from tbl_product ' .
            'where product_id like :product_id ' .
            'order by product_id asc ' .
            'limit 0,10');

$searchZip = $_REQUEST['term'] . '%';
$st->bindParam(':product_id', $searchZip, PDO::PARAM_STR);

$data = array();
if ($st->execute())
{
    while ($row = $st->fetch(PDO::FETCH_OBJ))
    {
        $data[] = array(
            'value' => $row->product_id ,
            'city' => $row->product_code ,
            'state' => $row->product_name
        );
    }
}
echo json_encode($data);
flush(); 
4

1 に答える 1