Я хочу интегрировать «виджет Mondialrelay» на основе jquery: http://www.mondialrelay.fr/media/52527/widget-v3-fr.pdf
Я пытаюсь это:
// component.ts:
import * as $ from 'jquery'; @Component({ selector: ' <div id="Zone_Widget"></div> <!-- Parcelshop code --> <input type="hidden" id="ParcelShopCode" name="ParcelShopCode" />'}) export class CommandeComponent implements OnInit { ngOnInit() { $(document).ready(function () { $('#Zone_Widget').MR_ParcelShopPicker({ Target: "#ParcelShopCode", Brand: "BDTEST ", Country: "FR" }); }); } }
// Index. html:
<head> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script type="text/javascript" src="https://widget.mondialrelay.com/parcelshop-picker/jquery.plugin.mondialrelay.parcelshoppicker.min.js"></script> </head>
// angular. json .ts
"scripts": ["node_modules/jquery/dist/jquery.min.js" ]
но у меня есть эта ошибка : core. js: 6185 ОШИБКА TypeError: jquery__WEBPACK_IMPORTED_MODULE_3 __ (...). MR_ParcelShopPicker не является функцией
У кого-то есть идея? спасибо