0
我是Django的新手,並且想要將AngularJS與Django集成。 Djangular已安裝並可以使用。在Djangon中使用AngularJS指令
基本目錄結構如下:
mysite/app/Templates/app/index.html
mysite/app/Templates/app/directives/item-detail.html
的index.html
在url.py
通過url(r'^$', views.index, name='index'),
參照,並在views.py
,index()
返回
return render(
request,
'app/index.html',
{
'somevar': "some variables from index()"
}
)
小號○當在我定義了一個directive
<item-detail>
使用
app.directive('itemDetail', function(){
restrict: 'E',
templateUrl: ''
})
我不知道要放在什麼templateUrl
(或應該有其他配置)? templateUrl: "directives/item-detail.html"
給出了404
錯誤; template: "<h1>This is a template</h1>"
工作正常。