Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Несколько раз загружает точки при повторном создании #69

Open
piton-zel opened this issue Jun 7, 2024 · 1 comment

Comments

@piton-zel
Copy link

Вот как пример скрипта на котором это можно смоделировать

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Пример работы виджета ПВЗ</title>
    <script src="/local/ext/cdek.widget/cdek-widget.umd.js" type="text/javascript"></script>
    <script type="text/javascript">
        const apiKey = 'XXX';
        const servicePath = '/local/ext/cdek.widget/service.php';
        document.addEventListener('DOMContentLoaded', () => {
            console.info('create 1');
            const obj = new window.CDEKWidget({
                apiKey: apiKey,
                servicePath: servicePath,
                defaultLocation: 'Новосибирск',
            });
            // Ждем 5 сек и удаляем
            setTimeout(() => {
                console.info('destroy 1');
                obj.destroy();
                // Еще ждем 5 сек и опять создаем
                setTimeout(() => {
                    console.info('create 2');
                    const obj2 = new window.CDEKWidget({
                        apiKey: apiKey,
                        servicePath: servicePath,
                        defaultLocation: 'Новосибирск',
                    });
                }, 25000);
            }, 25000);
        });
    </script>
</head>
<body>
<p class="m-2">Пример установки виджета</p>
</body>
</html>

А вот что получаем при создании obj2
изображение
Видно что он уже 2 раза это все повторно прогружает? Если еще раз удалить и создать, то .... Я думаю понятно что будет.

@Ioprst
Copy link

Ioprst commented Sep 18, 2024

А если попробовать создать виджет с новым городом, то грузит точки и с новым городом и со старым

изображение

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants