• Stars
    star
    207
  • Rank 183,873 (Top 4 %)
  • Language
  • Created about 10 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Just example of application on AngularJS with server-side Yii2 Rest API.

GET STARTED

$ git clone https://github.com/githubjeka/angular-yii2.git
$ cd angular-yii2
$ git submodule init
$ git submodule update

Init client

$ cd client-angular
$ bower update

See more info https://github.com/AngularYii2/angularyii2.github.io

Init server:

Build Status

$ cd rest
$ composer install --prefer-dist

For more information by init rest server please see description of yii2-rest repository

Test app yii2 rest Api and angular client side

Demo Client - http://angularyii2.github.io/

Demo Server - https://yii2-rest-githubjeka.c9.io/rest/web/

Not Found (#404) is OK, because rules is

[
'urlManager' => [
            'enablePrettyUrl' => true,
            'enableStrictParsing' => true,
            'showScriptName' => false,
            'rules' => [
                ['class' => 'yii\rest\UrlRule', 'controller' => ['v1/post', 'v1/comment', 'v2/post']],
                'v1/user/login' => 'v1/user/login',
                'POST v2/user/login' => 'v2/user/login',
                'OPTIONS v2/user/login' => 'v2/user/login',
            ],
        ],
 ]

Additional sources of knowledge