我在 django 中有这样的模板:
<!DOCTYPE html >
<html ng-app>
<head>
{% load staticfiles %}
<link rel="Stylesheet" type="text/css" href="{% static "style.css" %}" />
<script src="ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.js"></script>
</head>
<body>
<p> red </p>
<input type="text" ng-model="name">
<h2> Hello {{ name }} </h2>
</body>
</html>
但是当我在输入中写一些名字时,名字不会出现在“你好”附近