django Vue.js在select option标签中返回空值

mmvthczy  于 12个月前  发布在  Go
关注(0)|答案(1)|浏览(153)

我在我的profie.html中有这样一行代码,它应该使用vue.js v-for和{{ val.division_name }}来显示除法运算的值。相反,这段代码返回的除法运算值是空白的,但我可以告诉你除法运算正在渲染的值,它只是空白值。

<select name="division_id" class="form-control form-select" id="division-id" aria-label="Default select example" v-model="formData.division_id" @change="onDivisionChange" required>
              <option value="0">Select Division</option>
              <option v-for="val in divisionListVue" :value="val.id">{{ val.division_name }}</option>
             </select>

字符串
x1c 0d1x的数据
这是我的custom-vue.js

const app = Vue.createApp({
  data() {
    return {
        divisionListVue: [], // Initialize divisionList with an empty array
        calendarListVue: [], // Initialize calendarList with an empty array
        formData: {
            division_id: 0, // Initialize division_id with 0
            division_name: '', // Initialize with an empty string
            calendar_id: null, // Initialize calendar_id with 0
            calendar_name: '', // Initialize with an empty string
        },
    };
},

methods: {

    showModal() {
        // Show the Bootstrap modal by selecting it with its ID and calling the 'modal' method
        // $('#myModal').modal('show');
        $("#modal1").modal('show'); // Show the modal on page load
    },
    // Function to fetch division data
    fetchDivisionData() {
        fetch('/users/api/divisions/') // Replace with the actual API endpoint
        .then(response => response.json())
        .then(data => {
            console.log(data);
            this.divisionListVue = data;
            console.log(this.divisionListVue);
        })
        .catch(error => {
            console.error('Error fetching division data:', error);
        });
    },
    // Function to fetch calendar data
    fetchCalendarData() {
        fetch('/users/api/calendars/') // Replace with the actual API endpoint
        .then(response => response.json())
        .then(data => {
            console.log(data);
            this.calendarListVue = data;
            console.log(this.calendarListVue);
        })
        .catch(error => {
            console.error('Error fetching calendar data:', error);
        });
    },
    onDivisionChange() {
        //console.log('Selected Division ID:', this.formData.division_id);
        //console.log(this.divisionListVue);
        
        const selectedDivision = this.divisionListVue.find(item => item.id === this.formData.division_id);
        this.formData.division_name = selectedDivision ? selectedDivision.division_name : '';
        
      },
    onCalendarChange() {
        //console.log('Selected Calendar ID:', this.formData.calendar_id);
        //console.log(this.calendarListVue);
        const selectedCalendar = this.calendarListVue.find(item => item.id === this.formData.calendar_id);
        this.formData.calendar_name = selectedCalendar ? selectedCalendar.calendar_name : '';
        
    },
   
},
mounted() {

     // Fetch division and calendar data when the component is mounted
    this.fetchDivisionData();
    this.fetchCalendarData();

 } // end of the mounted() function

});

app.mount('#app');

url.py

urlpatterns = [
path('register/', views.register, name='register'),
path('login/', views.login_request, name='login'), 
path('profile/', views.profile, name='profile'),
path('api/divisions/', views.get_divisions, name='get_divisions'),
path('api/calendars/', views.get_calendars, name='get_calendars'),
  ]

views.py

# function to get the list of divisions
def get_divisions(request):
divisions = Division.objects.all()
data = [{'id': division.id, 'division_name': division.division_name} for division in divisions]
return JsonResponse(data, safe=False)

 # function to get the list of calendars
def get_calendars(request):
calendars = Calendar.objects.all()
data = [{'id': calendar.id, 'calendar_name': calendar.calendar_name} for calendar in calendars]
return JsonResponse(data, safe=False)


这是console.log(data)返回的数据格式



这是console.log(this.divisionListVue);返回的数据格式



是什么原因导致vue显示空值?我已经有了vue使用这个脚本<script src="{% static 'js/vue.global.js' %}"></script>工作所需的静态文件。

i5desfxk

i5desfxk1#

我在Django项目中遇到的Vue.js无法按预期工作的问题与Vue.js的双花括号和Django的模板语法之间的冲突有关,Django的模板语法也使用双花括号作为模板变量。
当我在Django模板中使用{{ message }}时,它被解释为Django模板变量,而不是Vue.js表达式。为了避免这种冲突,我将Vue.js用于模板表达式的分隔符更改为{{ }}以外的东西。Vue.js提供了一个名为“自定义分隔符”的功能。它允许我为Vue.js模板表达式指定不同的分隔符。下面是我如何应用vue.js分隔符。

const app = Vue.createApp({
delimiters: ['{[', ']}'], // Change Vue.js delimiters to avoid conflicts with Django template tags
});
app.mount('#app');

字符串
然后分别应用除法和历法的运算符:

<option v-for="val in divisionListVue" :value="val.id">{[ val.division_name ]}</option>
<option v-for="val in calendarListVue" :value="val.id">{[ val.calendar_name ]}</option>

相关问题