Đang cập nhật lên 4.0.0
Cập nhật lên 4 dễ dàng như cập nhật các phụ thuộc Angular của bạn lên phiên bản mới nhất và kiểm tra lại nếu bạn muốn hoạt hình. Điều này sẽ làm việc cho hầu hết các trường hợp sử dụng.
Trên Linux / Mac:
npm install @angular/{common,compiler,compiler-cli,core,forms,http,platform-browser,platform-browser-dynamic,platform-server,router,animations}@latest typescript@latest --save
Trên Windows:
npm install @angular/common@latest @angular/compiler@latest @angular/compiler-cli@latest @angular/core@latest @angular/forms@latest @angular/http@latest @angular/platform-browser@latest @angular/platform-browser-dynamic@latest @angular/platform-server@latest @angular/router@latest @angular/animations@latest typescript@latest --save
Sau đó chạy bất cứ thứ gì ng phục vụ hoặc lệnh bắt đầu npm bạn thường sử dụng và mọi thứ sẽ hoạt động.
Nếu bạn dựa vào Ảnh động, hãy nhập cái mới BrowserAnimationsModule
từ @angular/platform-browser/animations
gốc của bạn NgModule
. Không có điều này, mã của bạn sẽ biên dịch và chạy, nhưng hình ảnh động sẽ gây ra lỗi. Nhập khẩu từ @angular/core
không được chấp nhận, sử dụng nhập khẩu từ gói mới
import { trigger, state, style, transition, animate } from '@angular/animations';.