-
Notifications
You must be signed in to change notification settings - Fork 23
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
Ошибка при подключении модуля на angular/common 4.0.1 #4
Comments
возможно дурацкий совет, но попробуйте YaCoreModule.forRoot() последним поставить в импорте |
или YaCoreModule.forRoot(routing) |
Собрал из стартера webpack и на планкере https://plnkr.co/edit/PbRPJHlNvh73EZRyqHTt?p=preview, работает. Возможно еще в чем-то причины. |
Та же проблема, пробовал изменять порядок загрузки модулей и добавлять раути как аргумент. "@angular/[email protected]": |
Столкнулся точно с такой же проблемой, собирал проект с помощью angular-cli, под angular4. |
Я в итоге решил проблему тем, что выкачал с гитхаба исходники и проект нормально собрался и запустился с помощью веб пака. |
Спасибо за идею. |
Кто-нибудь нашел решение проблемы? |
@UnEpicFail import { YaCoreModule } from "angular2-yandex-maps"; При сборке ругаеться. Варианты двигать вверх вниз в импорте не помогли Какие еще варианты будут? P.S. |
@BGXi да ну нафиг) private setYaMapScript(): void {
const map = this.render.createElement('script');
map.type = 'text/javascript';
map.src = `//api-maps.yandex.ru/2.1/?lang=ru_RU`;
map.onload = () => { /* logic */ };
this.render.appendChild(this.el.nativeElement, map);
} |
Это из-за того,что NgModule из одного node_modules не равен NgModule из другого node_modules, даже если это одна и та же версия. Отредактируйте файл /src/tsconfig.app.json, добавив пути Если че, в строке "@angular/ "после слэша звёздочка, в обоих местах, чето при добавлении поста она не отобразилась |
Проект похоже не поддерживается, да? |
@flashart92 Подскажи выкачал исходники и? Я попробовал разместить |
сделали фикс, пробуйте с новой версией. |
При импортировании модуля "YaCoreModule.forRoot()" появляется ошибка.
Скрин package.json http://joxi.ru/nAyYvLgS1RVjAZ
Скрин модуля, в которые требуется провести импорт http://joxi.ru/E2peEWxHZ0beAY
Трейс ошибки:
"Uncaught (in promise): Error: Unexpected value '[object Object]' imported by the module 'DepositModule'. Please add a @NgModule annotation.
Error: Unexpected value '[object Object]' imported by the module 'DepositModule'. Please add a @NgModule annotation.
at Error.ZoneAwareError (http://localhost:8080/web-polyfills.js:7863:33)
at ZoneAwareError (http://localhost:8080/web-polyfills.js:7860:35)
at syntaxError (http://localhost:8080/web-common.js:6532:34)
at http://localhost:8080/web-common.js:18999:44
at Array.forEach (native)
at CompileMetadataResolver../node_modules/@angular/compiler/@angular/compiler.es5.js.CompileMetadataResolver.getNgModuleMetadata (http://localhost:8080/web-common.js:18982:49)
at JitCompiler../node_modules/@angular/compiler/@angular/compiler.es5.js.JitCompiler._loadModules (http://localhost:8080/web-common.js:30107:64)
at JitCompiler../node_modules/@angular/compiler/@angular/compiler.es5.js.JitCompiler._compileModuleAndComponents (http://localhost:8080/web-common.js:30066:52)
at JitCompiler../node_modules/@angular/compiler/@angular/compiler.es5.js.JitCompiler.compileModuleAsync (http://localhost:8080/web-common.js:30028:21)
at ModuleBoundCompiler../node_modules/@angular/compiler/@angular/compiler.es5.js.ModuleBoundCompiler.compileModuleAsync (http://localhost:8080/web-common.js:30396:31)
at MergeMapSubscriber.project (http://localhost:8080/web-common.js:58659:140)
at MergeMapSubscriber../node_modules/rxjs/operator/mergeMap.js.MergeMapSubscriber._tryNext (http://localhost:8080/web-common.js:92008:27)
at MergeMapSubscriber../node_modules/rxjs/operator/mergeMap.js.MergeMapSubscriber._next (http://localhost:8080/web-common.js:91998:18)
at MergeMapSubscriber../node_modules/rxjs/Subscriber.js.Subscriber.next (http://localhost:8080/web-common.js:88818:18)
at http://localhost:8080/web-common.js:90365:36
at ZoneDelegate.webpackJsonp../node_modules/zone.js/dist/zone.js.ZoneDelegate.invoke (http://localhost:8080/web-polyfills.js:7235:26)
at Object.onInvoke (http://localhost:8080/web-common.js:35220:37)
at ZoneDelegate.webpackJsonp../node_modules/zone.js/dist/zone.js.ZoneDelegate.invoke (http://localhost:8080/web-polyfills.js:7234:32)
at Zone.webpackJsonp../node_modules/zone.js/dist/zone.js.Zone.run (http://localhost:8080/web-polyfills.js:7031:43)
at http://localhost:8080/web-polyfills.js:7584:57
at ZoneDelegate.webpackJsonp../node_modules/zone.js/dist/zone.js.ZoneDelegate.invokeTask (http://localhost:8080/web-polyfills.js:7268:31)
at Object.onInvokeTask (http://localhost:8080/web-common.js:35211:37)
at ZoneDelegate.webpackJsonp../node_modules/zone.js/dist/zone.js.ZoneDelegate.invokeTask (http://localhost:8080/web-polyfills.js:7267:36)
at Zone.webpackJsonp../node_modules/zone.js/dist/zone.js.Zone.runTask (http://localhost:8080/web-polyfills.js:7071:47)
at drainMicroTaskQueue (http://localhost:8080/web-polyfills.js:7434:35)"
The text was updated successfully, but these errors were encountered: