开发者问题收集
我正在尝试调用一个 API,一旦我得到响应,我想定位 image_url 属性,但我收到此错误渲染时出错:“TypeError:无法读取未定义的属性‘image_url’”和无法读取 VueComponent.getImages1 (Info.vue?42ed:39) 上未定义的属性‘image_url’我已经在另一个 Javascript 文件中测试了我的代码,在那里它可以运行,但由于某种原因,
async saveForm(data) {return await axios({method: "post",url: FORM_PORTAL_CONTROLLER_URL + 'savemoratorium',body: JSON.stringify(data)}).then(res =>this.setState({ refNo: res.data.reference }))}我无法设
我尝试通过 WordPress 编辑器中的 javascript 代码向 AWS 验证身份,以便向 AWS Polly 发送请求。我按照互联网上的几个示例操作,但总是出错。const CREDS = {accessKeyId: "xxx",secretAccessKey: "xxx"// region: "eu-west-1"};axios(aws4.sign({host: "polly.eu-w
我的控制台中不断收到以下消息:“未捕获(在承诺中)TypeError:无法读取未定义的属性‘length’”quotesData.quotes 应该是数组的键,因此我不确定为什么它的 length 属性未定义。quotesData 应该是一个 JSON 对象,如下所示:{“quotes”:[Object1, Object2, ...etc.]我使用 axios 的方式有问题吗?我对编程还很陌生,对
我有一个 Rails 5.1.6 api,它提供了一个包含以下数据的端点:我正在尝试使用 axios 将实体数据检索到 Vue.js,但到目前为止,虽然没有抛出任何错误,但数据并未显示在视图中。以下是相关文件:#src/components/Entities.vue<template><div class="entities"><h1>Entities</h1><div v-if="entitie
我在 created() 方法中使用 axios 检索数据,如下所示:data() {return {filterBox: false,color: [],sortBy: null,productType: [],products: null,productcolors: null,categories: null,active_el: 0,isActive: false,categories:
我正在使用React 15.6.1、Axios、NGINX。我在登录时遇到 CORS 问题。以下是登录 axiosPOST调用const additionalHeaders = {code: action.payload,page: 'login'};const loginData = yield call(() =>axios(authorization, 'Basic', additional
我试图用从服务器 API(一个 json)获取的值来设置我的空对象。但我在同一行上一次又一次地收到错误:Uncaught (in promise) TypeError: Cannot set property 'itemListModel' of undefined at eval我的代码:data: function() {return {itemListModel: {}}}methods:
我尝试将 GET 请求中的response.data.Response.displayName分配给 playerName 属性,但是,我收到错误“Uncaught (in promise) TypeError: Cannot set property 'playerName' of undefined at eval”。我已成功将response.data.Reponse.displayName
我正在尝试使用 api rest 命令设置我的组件变量。我想通过其自己的文件中名为 handleResponse() 的函数来处理所有响应,如下所示。// api/tools/index.jsfunction handleResponse (promise, cb, cbError) {var cbErrorRun = (cbError && typeof cb === "function")pr
大家好,我在尝试使用 Axios 和 VueJS 确认从服务器收到的响应时遇到了一些问题axios.post('/login', {email: this.email,password: this.password}).then(response => {if (response.status == 200) {$root.$data.auth = true;} else {alert('uhhh
我有这个 vue.js 组件,它使用 axios 来检索joke对象的 json 数组:<template><div id="show-jokes-all"><h2>Showing all jokes</h2><div v-for="joke in jokes"><h2>{{joke.title}}</h2><article>{{joke.body}}</article><hr></div></d
我正在学习一个使用axios进行 HTTP 请求的教程。我已将 axios 实例设置为如下所示:import axios from 'axios';const axiosInstance = axios.create({baseUrl: 'https://www.google.com/'});export default axiosInstance;我已将其保存在项目根目录中的 AxiosOrde
我在我的 laravel 应用程序中使用 vuetify 框架构建了一个简单的表单。bootstrap.js 已经包含了 axios 客户端,但提交时仍然出现错误,提示 axios 未定义:[Vue warn]: Error in event handler for "click": "ReferenceError: axiosis not defined"这是新 laravel 安装附带的默认
我的组件出现错误。有人能帮忙解决这个问题吗?我在使用 vue 3 版本。出现错误:“未捕获(在承诺中)TypeError:无法读取未定义的属性(读取“地址”)”有人有什么见解吗?profile.vue<template><div><div class="col col-lg-12 col-xl-12" v-for="(_postData, index) in postData" v-bind:ke