dragonfly9527 2018-08-09 09:30 采纳率: 100%
浏览 64

AJAX继续调用相同页面的URL而不是API URL

I'm using Symfony version 3.* and I am using tetranz/select2entity-bundle to have Select2 to select assets to be assigned to users.

For some reason, AJAX keeps on calling the same page URL when trying to get the JSON output from an API URL.

URL should be:

http://127.0.0.1:8000/asset/api/asset_list

But the URL used is:

http://127.0.0.1:8000/user/1?field_name=assets

/**
 * Lists all asset entities.
 *
 * @Route("/api/asset_list", name="api_asset_list")
 * @Method({"GET", "POST"})
 */
public function apiAssetListAction()
{
    $em = $this->getDoctrine()->getManager();
    $assets = $em->getRepository('AppBundle:Asset')->findAll();

    foreach($assets as $asset)
            $itemArray[] = array('id' => $asset->getId(),'text' => $asset->__toString(),);

    return new Response(json_encode($itemArray), 200, array('Content-Type' => 'application/json'));
}



$builder->add('assets', Select2EntityType::class, [
                    'multiple' => true,
                    'remote_route' => 'api_asset_list',
                    'class' => 'AppBundle::Asset',
                    // 'primary_key' => 'id',
                    'text_property' => 'code',
                    'minimum_input_length' => 2,
                    'page_limit' => 10,
                    'allow_clear' => true,
                    'delay' => 250,
                    'cache' => true,
                    'cache_timeout' => 60000, // if 'cache' is true
                    'language' => 'en',
                    'placeholder' => 'Select assigned assets',
                    // 'object_manager' => $objectManager, // inject a custom object / entity manager 
                ]);

My Twig Code is as simple as this since I am using the Form Builder of Symfony to do the work for me:

 <div class = "modal" id = "assignModal" tabindex="-1" role = "dialog">
    <div class = "modal-dialog" role = "document">
        <div class = "modal-content">
            <div class = "modal-header">
                <h5 class = "modal-title">Assign Assets</h5>
            </div>
            <div class = "modal-body">
                {{form_start(assign_form)}}
                {{form_widget(assign_form)}}
                <input class = "btn btn-block btn-success" type="submit" value="Assign" />
                {{form_end(assign_form)}}
            </div>
        </div>
    </div>
</div> 

I also included this template in in my twig:form_themes configuration:

TetranzSelect2EntityBundle:Form:fields.html.twig

My list of JS Scripts used:

<script src="/js/jQuery.js"></script>
<script src="/js/jquery.collection.js"></script>
<script src="/js/popper.js"></script>
<script src="/js/bootstrap.js"></script>
<script src="/js/datatables.js"></script>
<script src="/js/list.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="/js/main.js"></script>
<script src="/js/select2.js"></script>
<script src="/bundles/tetranzselect2entity/js/select2entity.js"></script>

I hope you guys can help.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
    • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
    • ¥15 matlab有关常微分方程的问题求解决
    • ¥15 perl MISA分析p3_in脚本出错
    • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
    • ¥15 ubuntu虚拟机打包apk错误
    • ¥199 rust编程架构设计的方案 有偿
    • ¥15 回答4f系统的像差计算
    • ¥15 java如何提取出pdf里的文字?
    • ¥100 求三轴之间相互配合画圆以及直线的算法