4

我正在运行一个带有 Angular 前端和 Django 后端的项目。今天,当我更改模板中的一些代码时,ng build 没有更新。我发现它既不更新模板更改也不更新组件更改。但是,当我运行 ng serve 并转到 127.0.0.1:4200 而不是 Django 端口 8000 时,会呈现新的更新版本。

我设置它的方式是我有一个 Django 使用 TemplateViev 指向的模板:

{% load static %}
{% csrf_token %}
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>AngularWebapp</title>
  <base href="/">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
  <app-root></app-root>
{% block javascript %}
<script type="text/javascript" src="{% static 'runtime.js' %}"></script><script type="text/javascript" src="{% static 'polyfills.js' %}"></script><script type="text/javascript" src="{% static 'styles.js' %}"></script><script type="text/javascript" src="{% static 'vendor.js' %}"></script><script type="text/javascript" src="{% static 'main.js' %}"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
{% endblock %}
</body>
</html>

静态目录布局在 settings.py 中如下所示:

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'angular', 'static'),
    os.path.join(BASE_DIR, 'angular-webapp', 'dist', 'angular-webapp'),
]
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

和 urls.py:

from django.contrib import admin
from django.urls import path, re_path, include
from django.views.generic import TemplateView
from rest_framework import routers
from authentication.views import AccountViewSet, LoginView
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.contrib.staticfiles import views

router=routers.SimpleRouter()
router.register('accounts', AccountViewSet)

class IndexView(TemplateView):
    template_name = 'index.html'

urlpatterns = [
    path('admin/', admin.site.urls),
    path('api/v1/', include(router.urls)),
    re_path(r'^api/v1/auth/login/$', LoginView.as_view(), name='login'),
    re_path(r'^.*/$', IndexView.as_view()),
    path('', IndexView.as_view()),
]

这是我唯一拥有静态文件的地方,也是放置来自 ng build 的文件的地方,即 IE。静态负载从构建时输出的文件夹中加载 runtime.js 等。

但是,从昨天开始,我在 angular-webapp/src/app 文件夹中对我的应用程序所做的更改在我构建时没有得到更新。我曾尝试删除 dist 文件夹以创建一个新文件夹,但这并没有改变任何东西。当它回来并且我运行该项目时,它仍然以某种方式使用旧布局,而 ng serve 完美运行。

我缺少关于 ng build 的工作原理吗?

4

1 回答 1

6

这可能是缓存破坏问题:您的文件仍然具有相同的名称,并且由于它们被浏览器缓存,因此不会重新加载它们。

考虑使用--prod包含其他几个标志的标志进行构建,例如--aot,但要更正您的问题,请尝试使用--output-hashing=all.

直接来自ng build --help

--output-hashing=none|all|media|bundles 
  (String) Define the output filename cache-busting hashing mode.
  aliases: -oh <value>, --outputHashing <value>
于 2018-05-24T14:29:51.020 回答