我是 PayPal SDK 的新手,正在尝试在 Laravel 应用程序中使用 PayPal Checkout SDK。我已按照以下 github页面中的大部分说明进行操作,第一次调用 create-payment 函数似乎有效;但是,当我在 PayPal 弹出窗口上按下继续来执行交易时,它会失败并产生以下错误:Error: Request to post /api/execute-payment
2019-01-20
这是我正在处理的代码 swal({title: "Confirm details?",text:'<input id="datetimepicker" class="form-control" autofocus>',type: "warning",customClass: 'swal-custom-width',html:true,showCancelButton: true,confirm
2018-04-16
我已经使用 npm 安装了 Fullcalendar 库包。npm i --save @fullcalendar/core@fullcalendar/interaction @fullcalendar/daygrid@fullcalendar/timegrid @fullcalendar/list @fullcalendar/bootstrap我还将其包含在 app.js 中。require('@
2020-10-14
在 Vue 中调用 getRating 函数时出现此错误。我在 laravel 中使用 Vue-star-rating 包。不明白问题是什么。 getRating(){var pathArray = location.pathname.split('/');var pid = pathArray[2];fetch(`/api/rating/${pid}`).then(res => res.json
2020-06-09
我正在尝试学习 AJAX,但在请求方面遇到了一些问题。每当我发送请求时,我都可以 console.log 数据,但是,我也会收到错误。Uncaught TypeError: Cannot read property 'length' of undefined这是它请求的 JSON 数据。{"data":{"id":"633","name":"test_name","none":"0"}}$.aja
2020-04-06
我在 created() 方法中使用 axios 检索数据,如下所示:data() {return {filterBox: false,color: [],sortBy: null,productType: [],products: null,productcolors: null,categories: null,active_el: 0,isActive: false,categories:
Hello friends I am tired of getting this error when i count a length of notification by using vue.js and Laravel it show error,Uncaught (in promise) TypeError: Cannot read property 'forEach' of undefi
我的网站无法呈现我的 CSS。在我的本地主机上,它运行良好。我很难理解为什么?更新 #1:我卸载了所有内容并重新安装,希望之前可能做错了……但同样的问题仍然存在。尝试通过添加 /public 甚至完整路径 users/name/projectname/public 等来修改路径 /css/app.css,但都不起作用。更新 #2:将我的 css/app.css 文件与另一个项目进行比较,似乎代码无
2020-04-16
我有一个 laravel 项目,其中有一些自定义更改我尝试使用 Vue js 代码,但在我的情况下不起作用我已经运行了所有必需的命令,但仍然不起作用,当我检查控制台时,它说消息未定义。我的 webpack.config.js const mix = require('laravel-mix');/*|-------------------------------------------------
2019-12-05
我在 laravel 项目中使用 laravel-vue-i18n-generator 包来处理 vuejs 组件中的文本翻译。我已按如下方式设置 app.js:import VueInternationalization from 'vue-i18n';import Locale from './vue-i18n-locales.generated';Vue.use(VueInternation
我有一个表格,其中一行显示,另一行隐藏,但单击时会显示。<table cellspacing="0" id="datatable" class="table table-responsive table-striped table-bordered" style="width: 1300px; margin-bottom: 50px"><thead><tr><th>#</th><th>1</th>
2017-11-30
我想使用 Laravel 5.4 和 Vue2 设置 SPA。我已经按照教程 (Jeffrey Way - Laracast) 操作。但我遇到了这个问题。无法弄清楚为什么控制台中会出现此错误?:Uncaught TypeError: Cannot set property 'app' of undefinedat VueRouter (app.js:3149)at Object.<anonymou
2017-04-15
我已完成以下操作。<td class="text-center"><a href="#" title="" id="signal_<?=$rs['signal_id']?>" addEventListener('click','editSignal(this)') data-toggle="modal" data-target="#send_distress_modal"><i class="f
2021-04-08
我想将控制器中的数据作为数组响应到 AJAX,但它一直显示此错误:json_encode() expects parameter 2 to be integer, object given以下是我的代码: function get_show(Request $request){$id = $request->input('id');$leads = Lead::find($id);$leads_a
我在我的 laravel 应用程序中使用 vuetify 框架构建了一个简单的表单。bootstrap.js 已经包含了 axios 客户端,但提交时仍然出现错误,提示 axios 未定义:[Vue warn]: Error in event handler for "click": "ReferenceError: axiosis not defined"这是新 laravel 安装附带的默认
2018-07-24