我在url.py中编写多个页面并运行它。我不能看到我想要的页面。浏览器显示“ERR_CONNECTION_REFUSED”。顺便说一下,当我只有一个页面时,它可以工作。我需要有人帮助我,谢谢。我的代码:
<template>
<blink-org-search
field-name="organisation_id"
:values="values"
endpoint="/api/v1/blink/organisations"
:format="format"
:query="getQuery"
v-on:itemSelected="setItem">
</blink-org-search>
</template>
<script>
export default {
props: ['organisation'],
data() {
return {
values: {
id: this.organisation.id,
search: this.organisation.name
},
format: function (items) {
for (let item of items.results) {
item.display = item.name
item.resultsDisplay = item.name
}
return items.results
}
}
},
methods: {
setItem (item) {
this.$emit('organisationSelected', item)
}
}
}
</script>
文件名“views”: 来自django.http导入HttpResponse 导入日期时间 def hello(请求): 返回HttpResponse(“Hello World”)
from django.conf.urls import url
from django.contrib import admin
from mysite.views import *
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^hello/',hello),
]
当我访问根目录时,终端显示: 未找到: / [15 / Jun / 2017 15:14:06]“GET / HTTP / 1.1”404 2022
但是我访问了hello页面,它没有给我任何提示。浏览器显示“ERR_CONNECTION_REFUSED”。