<!DOCTYPE html>
<
html
>
<
head
>
<
meta
charset
=
"utf-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width,user-scalable=no, initial-scale=1"
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
""
/>
<
title
>angularjs实现 ajax</
title
>
</
head
>
<
body
ng-app
=
"HelloAjax"
>
<
div
ng-controller
=
"HelloAjax"
>
<
form
>
<
input
type
=
"text"
ng-model
=
"username"
/>
<
input
type
=
"text"
ng-model
=
"email"
/>
</
form
>
<
table
>
<
tr
ng-repeat
=
"user in users"
>
<
td
>{{user.username}}</
td
>
<
td
>{{user.email}}</
td
>
</
tr
>
</
table
>
<
button
ng-click
=
"get_more();"
>get more</
button
>
</
div
>
</
body
>
<
script
type
=
"text/javascript"
src
=
"./js/angular.min.js"
charset
=
"utf-8"
></
script
>
<
script
type
=
"text/javascript"
src
=
"ajax.js"
charset
=
"utf-8"
></
script
>
</
html
>