开发者问题收集
我正在使用 exifjs 从图像中获取 GPS 数据。我想做的是将纬度和经度变量转换为十进制变量。像这样:<template lang="html"><div class="upload-wrap"><button class="btn">Kies een foto</button><input ref="fileinput" @change="onChange" id="file-input"
async checkDriver(mobile) {this.$axios({url: "xxx",method: "POST",data: {mobile: mobile}}).then(res => {console.log("========="+res.status);return res.data.status;}).catch(error => {this.$message.erro
我正在使用 lodash 在组件上调用 debounce 函数,如下所示:...import _ from 'lodash';export default {store,data: () => {return {foo: "",}},watch: {searchStr: _.debounce(this.default.methods.checkSearchStr(str), 100)},metho
我有一个组件,它可以响应式地显示对象数组中包含的数据。目前,该组件显示两个对象,但我希望它根据条件显示其中一个对象。如何根据名为 premiumActivated 的属性的状态显示其中一个对象?<template><div><div class="background-div"><div class="page-info-inner"><PremiumContent v-for="item in
我正在学习https://medium.com/codingthesmartway-com-blog/vue-js-2-firebase-e4b2479e35a8上的 Vue 教程。我可以将新数据发布到 firebase,但没有收到任何返回的数据。我在控制台中看到此错误:vue.esm.js?efeb:578[Vue warn]: Property or method "books" is not
我正在尝试从 firebase 数据库检索数据。我可以连接到 firebase auth 并检查currentUser数据,这很好。但我无法从 firebase 数据库检索数据,它只返回空数组。firebase 版本 = 5.0.4vue 版本 = 2.5.16数据库结构users/--------uId/--------------name--------------emailVue Js 文件
尝试将我的 API 与 Vue/Axios 集成时遇到了障碍。基本上,Axios 正在获取数据(它确实控制台记录了我想要的数据)...但是当我尝试将该数据获取到我的空变量(在我的组件的数据对象中)以存储它时,它会抛出“eval 未定义”错误。有人知道为什么这对我来说不起作用吗?谢谢!<template><div class="wallet-container"><h1 class="title">
我的 API 响应如下所示data: {id: 9,quantity: 2,address: "Test Address",total_price: 144.42,created_at: "August 07, 2018 04:02:46 AM",customer: {id: 3,name: "Prof. Laurel Lemke",email: "[email protected]",role_
我正在尝试从 JSON 中的对象数组中获取第二个 [1] 项目的标题:{"@attributes": {"version": "2.0"},"channel": {"title": "Rust News","description": "The latest news posts from Rust","lastBuildDate": "Thu, 07 Jul 2022 07:00:00 Z","
我的视图是这样的:<div class="col-md-8">...<star :value="{{ $data['rating'] }}" :user="{{ $data['user_id']></star>...</div>我的星号组件是这样的:<template><span class="rating"><template v-for="item in items"><label class
我试图将组件中的 props 传递给同一组件的数据对象。但是,我只得到 null。有人能建议我该如何处理这个问题吗?似乎我的 vue 组件无法在初始渲染/加载时获取 props。 const teamInformationTemplate = {template:`<div class="col-lg-6 col-md-12"><div class="card card"><!----><d
我正在使用 push() 方法将数据添加到对象并收到错误:Uncaught (in promise) TypeError: this.message.push is not a function从 API 调用接收到一些数据,这些数据将添加到对象中。var price = new Vue({delimiters: ["[[","]]"],el: '#app',data: {message: {}}
我收到一个 json 列表,并将其发送给一个组件const app = new Vue({el: '#app',data: {tablaUsuarios: []},mounted() {axios.get(url + 'listar/').then(res => {this.tablaUsuarios = res.data}).catch(err => {console.error(err);})
我试图将字符串数组作为 prop 传递给子组件,但出现Vue: Invalid prop: type check failed for prop . Expected Array, got String with value错误。使用该组件:<template><GenericForm title = "Sign Up" button-text= "Sign Up"fields="['Userna
假设我们有两个路由:edit/1和edit/new根容器(在挂载时)检查是否存在this.$route.params.id,如果存在,则从 API 获取数据并填充obj。否则,相关的obj仍为空。此对象被发送到具有以下内容的子组件:<template><input v-model="obj.name"><input v-model=obj.email"></template><script>exp