ng add @spartacus/schematics --ssrhtml
在用 SAP Spartacus 開發的 store 裏,能看到 devDependencies 裏具備 @spartacus/schematics 的依賴:node
這是 SAP Spartacus Schematics 的一部分:https://sap.github.io/spartac...git
Spartacus schematics allow you to install Spartacus libraries in your project.
Spartacus Schematics 容許咱們在本身的項目裏安裝 Spartacus 庫。SAP Spartacus Schematics 自己的幫助文檔:https://github.com/SAP/sparta...github
命令:ng add @spartacus/schematics@latestweb
支持的一些重要 option:typescript
featureLevel:設置應用的 feature level,默認值和 Spartacus package level 一致。express
作兩件事情:npm
使用 option 的語法:json
ng add @spartacus/schematics@latest --baseUrl https://spartacus-demo.eastus... --baseSite=apparel-uk-spa,electronics-spa --currency=gbp,usd --language=uk,en --ssrbootstrap
https://github.com/angular/un...
Express Engine 的做用是爲了在服務器端運行 Angular 應用讓其支持服務器端渲染。
而這個 serve-ssr 定義在 angular.json 的 architect 區域裏:
修改 src/main.ts:
以前的代碼:
platformBrowserDynamic().bootstrapModule(AppModule);
修改以後的代碼:
document.addEventListener("DOMContentLoaded", () => { platformBrowserDynamic().bootstrapModule(AppModule); });
這裏的 platformBrowserDynamic 是什麼意思?參考這篇知乎文章什麼是 Angular Platforms - 深刻理解 Angular Platforms
Angular 框架的設計初衷是將其打形成一個獨立平臺。這樣的設計思路確保了 Angular 應用能夠正常地跨環境執行 - 不管是在瀏覽器,服務端,web-worker 甚至是在移動設備上。
當咱們經過 Angular CLI 指令 ng new MyNewApplication 建立一個新的 Angular 應用時,應用的默認環境設置爲瀏覽器環境。
platformBrowserDynamic 函數的返回結果是一個 PlatformRef。 PlatformRef 只是一個 Angular 服務,該服務知曉如何引導啓動 Angular 應用。
Angular 高度依賴於依賴注入系統。這也是爲何 Angular 自己很大一部份內容被聲明爲抽象服務的緣由, 好比 Renderer2.
下圖中間藍色圓圈表明抽象類,上下的綠色和紫色,分別表明 Browser Platform 和 Server Platform 的具體實現。
DomAdapter:
app.module.ts:
BrowserModule.withServerTransition({ appId: 'spartacus-app' }),
Configures a browser-based app to transition from a server-rendered app, if one is present on the page.
@param params — An object containing an identifier for the app to transition. The ID must match between the client and server versions of the app.
BrowserTransferStateModule: NgModule to install on the client side while using the TransferState to transfer state from server to client.
https://angular.io/api/platfo...
TransferState: A key value store that is transferred from the application on the server side to the application on the client side.
一個 key value 存儲結構,從服務器端應用轉移到客戶端應用。
TransferState will be available as an injectable token. To use it import ServerTransferStateModule on the server and BrowserTransferStateModule on the client.
As soon as Spartacus is installed in PWA mode, a service worker is installed, and it serves a cached version of index.html, along with the js files. This results in SSR being completely skipped.
Spartacus 若是以 PWA 模式安裝,則 service worker 啓動,提供一個緩存後的 index.html, 以及相關的 JavaScript 文件。這會致使 SSR 徹底被忽略掉。
在代碼裏關閉 PWA:
StorefrontModule.withConfig({ backend: { occ: { baseUrl: 'https://[your_enpdoint], }, }, pwa: { enabled: false, }, };
更多Jerry的原創文章,盡在:"汪子熙":