Here is documentation about AngularJS JavaScript SDK
This example works perfect for Angular. It is possible to generate Angular client library with command
$ lb-ng ../server/server.js js/lb-services.js
Does exist same easy way to use Angular2 with Loopback?
EDIT
What I found on this theme currently.
EDIT
At this moment you may use fork of loopback-sdk-angular and loopback-sdk-angular-cli packages.
package.json:
"devDependencies": {
//...
"loopback-sdk-angular": "github:qeti/loopback-sdk-angular#188-angular2-support",
"loopback-sdk-angular-cli": "github:qeti/loopback-sdk-angular-cli#37-angular2-support"
}
Generate client code (TypeScript):
./node_modules/.bin/lb-ng ./server/server.js ./client/src/app/lb-services.ts -l angular2
Example of usage:
import {Component,Injectable} from 'angular2/core';
import {UserApi as UserService} from './lb-services';
import {HTTP_PROVIDERS} from 'angular2/http';
@Component({
selector: 'my-app',
providers: [UserService,HTTP_PROVIDERS],
template: 'some template'
})
@Injectable()
export class AppComponent {
private login: string;
private password: string;
constructor(protected user: UserService) {}
onLogin() {
let self = this;
// Example 1
this.user.login({
username: self.login,
password: self.password
})
.subscribe(res => {
// some actions on login
this.getData();
});
}
onLogout() {
// Example 2
this.user.logout().subscribe(() => {
// some actions on logout
});
}
public getData() {
// Example 3
this.user.count().subscribe((response: any) => {
let lastRow = response.count;
let data = this.user
// Example 4
.find({
offset: 0,
limit: 100
})
.subscribe(function(response: any) {
// Process response
});
});
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With