TypeError: Прототипом объекта может быть только Object или null: undefined в Ionic3 - PullRequest
3 голосов
/ 08 января 2020

При запуске ionic cordova build android --prod для моего проекта Ionic3 возникает следующая ошибка. Нет ошибки только на ionic cordova build android.

ionic-app-script task: "build" 
TypeError: Object prototype may only be an Object or null: undefined 
TypeError: Object prototype may only be an Object or null: undefined
    at setPrototypeOf (<anonymous>)
    at Object.__extends (/Users/.../node_modules/tslib/tslib.js:64:9)
    at /Users/.../node_modules/@angular/compiler-cli/src/ngtsc/indexer/src/template.js:115:17
    at /Users/.../node_modules/@angular/compiler-cli/src/ngtsc/indexer/src/template.js:314:6
    at /Users/.../node_modules/@angular/compiler-cli/src/ngtsc/indexer/src/template.js:3:17
    at Object.<anonymous> (/Users/.../node_modules/@angular/compiler-cli/src/ngtsc/indexer/src/template.js:9:3)
    at Module._compile (internal/modules/cjs/loader.js:776:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10)
    at Module.load (internal/modules/cjs/loader.js:643:32)
    at Function.Module._load (internal/modules/cjs/loader.js:556:12)
[ERROR] An error occurred while running subprocess ionic-app-scripts.

Я перепробовал все решения на здесь , но он не работает.

Ниже приведены мои данные c подробности.

Ionic:

   Ionic CLI          : 5.4.13 (/Users/meuser/.nvm/versions/node/v12.6.0/lib/node_modules/ionic)
   Ionic Framework    : ionic-angular 3.9.9
   @ionic/app-scripts : 3.2.4

Cordova:

   Cordova CLI       : 9.0.0 (cordova-lib@9.0.1)
   Cordova Platforms : android 8.1.0, ios 5.0.1
   Cordova Plugins   : cordova-plugin-ionic-keyboard 2.0.5, cordova-plugin-ionic-webview 1.1.1, (and 18 other plugins)

Utility:

   cordova-res : 0.8.1
   native-run  : 0.3.0

РЕДАКТИРОВАТЬ:

Подробная информация о ng v

Package                           Version
-----------------------------------------------------------
@angular-devkit/architect         0.803.23
@angular-devkit/build-optimizer   0.0.35
@angular-devkit/core              8.3.23
@angular-devkit/schematics        8.3.23
@angular/cli                      8.3.23
@angular/compiler-cli             8.2.12
@angular/fire                     5.3.0
@schematics/angular               8.3.23
@schematics/update                0.803.23
rxjs                              6.5.4
typescript                        3.7.5
webpack                           3.12.0

пакет. json

  "dependencies": {
    "@angular/animations": "5.2.11",
    "@angular/common": "5.2.11",
    "@angular/compiler": "5.2.11",
    "@angular/compiler-cli": "^8.2.12",
    "@angular/core": "5.2.11",
    "@angular/forms": "5.2.11",
    "@angular/http": "5.2.11",
}

Ответы [ 2 ]

1 голос
/ 21 января 2020

Наконец-то нашел проблему. Я изменил "@angular/compiler-cli": "^8.2.12" на "@angular/compiler-cli": "5.2.11" согласно моим angular версиям, и он работал нормально.

0 голосов
/ 21 января 2020

Удалить вашу папку node_modules. Удалите папку платформы android (всю папку платформы или просто папку android).

 Run npm install

Добавить платформу android

ionic cordova platform add android

Снова создайте приложение

ionic cordova build android --prod
...