Ez az oktatóanyag a szerver nélküli CMS-alapú Vue.js alkalmazás felépítésének korábbi oktatóanyagának folytatása, és bemutatja, hogyan kell felépíteni egy szerver nélküli CMS-alapú Angular alkalmazást.

A Google mérnökei által fejlesztett és karbantartott Angular helyet kapott a dinamikus webalkalmazásokban, és egyre inkább keresett nyelv. Ez egy robusztus és átfogó nyelv a front-end fejlesztéshez, amely egység tesztelésre kész, így sok fejlesztő számára a választott nyelv. Az Angular egyszerűsíti a kezelőfelület fejlesztési élményét azáltal, hogy kibővíti a HTML szintaxisát, hogy lehetővé tegye a tartalomkezelési képesség gyors létrehozását.
Az Angular egyszerűsége miatt a fejlesztők egyre inkább kihasználják annak lehetőségét, hogy CMS-képességekkel bővítsék a webhelyeket.
A Wordpress-felhasználók számára a tartalomkezelési képesség integrálásának egyik népszerű módja a wp-api-angular könyvtárral való együttműködés, amely lehetővé teszi a Wordpress API és az Angular alkalmazások közötti interakciót. Ha CMS platformként használja a Wordpress programot, akkor az Angular és a Wordpress API használata csökkentheti az oldal tartalmának betöltési idejét.
Azok számára, akik nem használják a Wordpress programot, létezik egy újfajta API alapú CMS, amely jelentősen leegyszerűsíti a dolgokat. Itt egy példát tárgyalunk.
Ebben a cikkben a ButterCMS-t fogjuk használni a Wordpress alternatívájaként, és példaként szolgálunk egy SaaS-alapú fej nélküli CMS-re, amely egy hosztolt CMS irányítópultot és tartalmi API-t biztosít, amelyeket az Angular alkalmazásból kérdez. Ez azt jelenti, hogy nem kell új infrastruktúrát fejlesztenie ahhoz, hogy CMS-t adjon az Angular alkalmazáshoz.
Ez az oktatóanyag bemutatja, hogyan lehet CMS-alapú Angular alkalmazást létrehozni, amelynek marketing oldalai (ügyfél-esettanulmányok), blog és GYIK vannak, amelyek mind API-n keresztül működnek. Nincs szükség szerverekre!
Telepítés
Először az Angular cli telepítésével kezdheti meg.
npm install -g @angular/cli
Állítson be egy új Angular projektet az Angular cli használatával. Alapértelmezés szerint az angular-cli CSS-stílust használ, ezért a —-style=scss
zászló hozzáadása azt mondja az Angular CLI-nek, hogy az SCSS-t használja.
ng new hello-buttercms-project --style=scsscd hello-buttercms-project
Telepítse a Szögletes anyaggal és a Szögletes anyaggal kapcsolatos csomagokat.
npm install --save @angular/material @angular/cdknpm install --save @angular/animations
Telepítse a ButterCMS-t. Futtassa ezt a parancssorban:
npm install buttercms --save
A vajat CDN segítségével is be lehet tölteni:
Gyorsan kezdje el
Nyissa meg a projektet a választott kódszerkesztőben. Az src / app alatt hozzon létre egy nevű könyvtárat_services
Létrehozunk egy nevű fájlt butterCMS.service.js
. Ez lehetővé teszi, hogy API-tokenje egy helyen legyen, és ne véletlenül változtassa meg.
import * as Butter from 'buttercms';
export const butterService = Butter('b60a008584313ed21803780bc9208557b3b49fbb');
Importálja ezt a fájlt minden olyan összetevőbe, ahol használni szeretné a ButterCMS-t.
Gyorsindításhoz lépjen az src/app/hello-you/hello-you.component.ts
importáláshozbutterService
import {butterService} from '../_services';
Bent a HelloYouComponent
hozzon létre módszerek:
fetchPosts() { butter.post.list({ page: 1, page_size: 10 }) .then((res) => { console.log(‘Content from ButterCMS’) console.log(res) })}
Most hívja meg ezt a módszert, amikor az összetevőt betöltötte, hozzáadva az OnInit
életciklus-horoghoz:
ngOnInit() { this.fetchPosts();}
Ez az API kérés beolvas egy blogbejegyzés mintát. A fiókjához tartozik egy példa bejegyzés, amelyet a válaszban láthat. Ha választ kap, az azt jelenti, hogy most csatlakozhat az API-hoz.
Adjon hozzá marketing oldalakat
A CMS-alapú oldalak beállítása három lépésből áll:
- Adja meg az oldal típusát
- Hozzon létre egy oldalt
- Integrálódjon az alkalmazásába
Define Page
First, create a Page Type to represent your Customer Case Study pages. Next, define the fields you want for your customer case studies. With your Page Type defined, you can now create the first case study page. Specify the name and URL of the page, and then populate the content of the page.

With your page defined, the ButterCMS API will return it in JSON format like this:
{ "data": { "slug": "acme-co", "fields": { "facebook_open_graph_title": "Acme Co loves ButterCMS", "seo_title": "Acme Co Customer Case Study", "headline": "Acme Co saved 200% on Anvil costs with ButterCMS", "testimonial": "We’ve been able to make anvils faster than ever before! — Chief Anvil Maker
\r\n", "customer_logo": "//cdn.buttercms.com/c8oSTGcwQDC5I58km5WV", } } }
This guide uses the Angular framework and Angular CLI to generate all the components and package our application.
Let’s get to the code.
Create new project
ng new buttercms-project --style=scsscd buttercms-projectnpm install --save @angular/material @angular/cdknpm install --save @angular/animationsnpm install -S buttercmsng serve
Your localhost:4200 should be ready to serve your Angular page.
Create typescript to export ButterCMS service
Under src/app
create a directory called _services
. Create a file called butterCMS.service.js
.
import * as Butter from 'buttercms';export const butterService = Butter('your_api_token');
Update the component routes
These components are generated by Angular CLI using:
ng g component
Under
src/app
create a file called app-routing.module.ts
import {NgModule} from '@angular/core';import {RouterModule, Routes} from '@angular/router';import {CustomerComponent} from './customer/listing/customer.listing.component';import {FaqComponent} from './faq/faq.component';import {BlogPostComponent} from './blog-post/listing/blog-post.component';import {HomeComponent} from './home/home.component';import {CustomerDetailsComponent} from './customer/details/customer.details.component';import {BlogPostDetailsComponent} from './blog-post/details/blog-post.details.component';import {FeedComponent} from './feed/feed.component';import {HelloYouComponent} from './hello-you/hello-you.component';
const appRoutes: Routes = [ {path: 'customer', component: CustomerComponent}, {path: 'customer/:slug', component: CustomerDetailsComponent}, {path: 'faq', component: FaqComponent}, {path: 'blog', component: BlogPostComponent}, {path: 'blog/:slug', component: BlogPostDetailsComponent}, {path: 'rss', component: FeedComponent}, {path: 'hello-you', component: HelloYouComponent}, {path: 'home', component: HomeComponent}, {path: '**', redirectTo: 'home'}];
@NgModule({ imports: [RouterModule.forRoot(appRoutes)], exports: [RouterModule]})export class AppRoutingModule {}
Set up the Customer List page
Under
apps/customer
type: ng g component
In the file
apps/customer/listing/customer.listing.component.ts
:
Import
butterService
In
OnInit
hook, usebutterService
to get the list of customersStore results in pages variable and markup (HTML) will be updated with the data
import {Component, OnInit} from '@angular/core';import {butterService} from '../../_services';
@Component({ selector: 'app-customer', templateUrl: './customer.listing.component.html', styleUrls: ['./customer.listing.component.scss']})
export class CustomerComponent implements OnInit { public pages: any[]; constructor() { }
ngOnInit() { butterService.page.list(‘customer_case_study’) .then((res) => { this.pages = res.data.data; }); }}
Display the results in
customer.listing.component.html
;Customers
whatshot
Set up the Customer Detail page
Under apps/customer
, type ng g component details
.
apps/customer/details/customer.details.component.ts
Create customer page
- Import
butterService
- In
OnInit
hook, usebutterService
to get the customer page given the slug in the URL path - Store results in page variable and markup (HTML) will be updated with the customer data
import {Component, OnInit} from '@angular/core';import {Observable} from 'rxjs/Observable';import {ActivatedRoute} from '@angular/router';import {butterService} from '../../_services';import {map, take} from 'rxjs/operators';
@Component({ selector: 'app-customer-details', templateUrl: './customer.details.component.html', styleUrls: ['./customer.details.component.scss']})
export class CustomerDetailsComponent implements OnInit { constructor(protected route: ActivatedRoute) { }
protected slug$: Observable; public page: any;
ngOnInit() { this.slug$ = this.route.paramMap .pipe( map(params => (params.get('slug'))) );
this.slug$.pipe( take(1)) .subscribe(slug => { butterService.page.retrieve('customer_case_study', slug) .then((res) => { this.page = res.data.data; }).catch((res) => { console.log(res); }); }); } }
Display the results in customer.details.component.html
{{page.fields.headline}}
Testimonials
You can now navigate to the Customer Page via the list of all Customer Pages or directly via URL.
Add a knowledge base
Set up content fields
Let’s suppose you want to add a CMS to a static FAQ page with a title and a list of questions with answers.
Making your content dynamic with Butter is a two-step process:
- Setup custom content fields in Butter
- Integrate the fields into your application
To setup custom content fields, first sign in to the Butter dashboard.
Create a new workspace or click on an existing one. Workspaces let you organize content fields in a friendly way for content editors and have no effect on development or the API. For example, a real-estate website might have a workspace called “Properties” and another called “About Page”.

Once you’re in a workspace click the button to create a new content field. Choose the “Object” type and name the field “FAQ Headline.”

After saving, add another field, but this time choose the “Collection” type and name the field FAQ Items
.
On the next screen, setup two properties for items in the collection.
Now go back to your workspace and update your heading and FAQ items.
Integrate your app
Create FAQ Component
Under apps
type: ng g component faq
apps/faq/faq.component.ts
Set up onInit hook to load FAQ
import {Component, OnInit} from '@angular/core';import {butterService} from '../_services';
@Component({ selector: 'app-faq', templateUrl: './faq.component.html', styleUrls: ['./faq.component.scss']})
export class FaqComponent implements OnInit { constructor() {}
public faq: any = { items: [], title: 'FAQ' };
ngOnInit() { butterService.content.retrieve(['faq_headline', 'faq_items']) .then((res) => { console.log(res.data.data); this.faq.title = res.data.data.faq_headline; this.faq.items = res.data.data.faq_items; }); }}
Display the result
; {{item.question}}
The values entered in the Butter dashboard will immediately update the content in our app.
Blogging
To display posts, you need to create a
/blog
route in your app and fetch blog posts from the Butter API, as well as a /blog/:slug
route to handle individual posts.
See the API reference for additional options such as filtering by category or author. The response also includes some metadata we’ll use for pagination.
Set up Blog Homepage
Under
apps/blog-post
, type: ng g component listing
.
apps/blog-post/listing/blog-post.listing.component.ts
Update component to get all posts:
Import
butterService
Get all post
onInit
import {Component, OnInit} from '@angular/core';import {butterService} from '../../_services';
@Component({ selector: 'app-blog-post', templateUrl: './blog-post.component.html', styleUrls: ['./blog-post.component.scss']})export class BlogPostComponent implements OnInit { public posts: any[];
constructor() { }
ngOnInit() { butterService.post.list({ page: 1, page_size: 10}).then((res) => { console.log(res.data) this.posts = res.data.data; }); }}
Display the result:
Blog Posts;
;
;
whatshot
Set up Blog Post page
Under apps/blog-post
, type: ng g component details
apps/blog-post/details/blog-post.details.component.ts
- Import
butterService
- In
OnInit
hook, usebutterService
to get the blog-post post given the slug in the URL path - Store results in post variable and markup (HTML) will be updated with the customer data
import {Component, OnInit, ViewEncapsulation} from '@angular/core';import {Observable} from 'rxjs/Observable';import {ActivatedRoute} from '@angular/router';import {butterService} from '../../_services';import {map, take} from 'rxjs/operators';
@Component({ selector: 'app-blog-post-details', templateUrl: './blog-post.details.component.html', styleUrls: ['./blog-post.details.component.scss'], encapsulation: ViewEncapsulation.None})
export class BlogPostDetailsComponent implements OnInit {
constructor(protected route: ActivatedRoute) { }
protected slug$: Observable; public post = { meta: null, data: null};
ngOnInit() { this.slug$ = this.route.paramMap .pipe( map(params => (params.get('slug'))) );
this.slug$.pipe( take(1)) .subscribe(slug => { butterService.post.retrieve(slug) .then((res) => { this.post = res.data; }).catch((res) => { console.log(res); }); }); }}
{{post.data.title}} < ;> ; {{post.data.author.first_name}} {{post.data.author.last_name}}
Now your app has a working blog that can be updated easily in the ButterCMS dashboard.
Categories, tags, and authors
Use Butter’s APIs for categories, tags, and authors to feature and filter content on your blog.
List all categories and get posts by category
Call these methods on the onInit()
lifecycle hook:
methods: { ... getCategories() { butter.category.list() .then((res) => { console.log('List of Categories:') console.log(res.data.data) }) }, getPostsByCategory() { butter.category.retrieve('example-category', { include: 'recent_posts' }) .then((res) => { console.log('Posts with specific category:') console.log(res) }) } }, created() { ... this.getCategories() this.getPostsByCategory()}
getCategories() { butter.category.list() .then((res) => { console.log(‘List of Categories:’) console.log(res.data.data) }) }, getPostsByCategory() { butter.category.retrieve(‘example-category’, { include: ‘recent_posts’ }) .then((res) => { console.log(‘Posts with specific category:’) console.log(res) }) }},created() { … this.getCategories() this.getPostsByCategory()}