An open API service indexing awesome lists of open source software.

https://github.com/wangxingkang/ng-completer

angular自动补全指令
https://github.com/wangxingkang/ng-completer

angular

Last synced: about 2 months ago
JSON representation

angular自动补全指令

Awesome Lists containing this project

README

          

#ngCompleter

## 安装

* Bower: `bower install ngCompleter`

* 添加`ngCompleter.min.js`和`ngCompleter.css`到你的html

```

```

* 添加`ngCompleter`模块到你的ng-app模块依赖

```
angular.module('app', ['ngCompleter']);
```

## 使用教程

html

```

```

controller

```
angular
.module('app',['ngCompleter'])
.controller('IndexController', function ($scope) {
$scope.emailFormat = ['qq.com', '163.com', '126.com', 'live.com']
})
```

## Demo

请查看[Demo Page](https://wangxingkang.github.io/ng-completer/)