Vue Laravel Axios Post无法在Android 7上运行

时间:2018-10-10 12:48:38

标签: android laravel vue.js axios

我有一个具有表单的Vue.js模板。这是帖子的示例:

axios.post('/url', $('$form').serialize()).then(response => {...}).catch(error => {...});
// Laravel has a series of if statements that make sql exec calls.
if (request()->input('condition') == 1 && request()->input('condition2') == 1){ 
try {run sql update;} 
catch (Exception $e) {//no worries} 
try { run sql exec;} 
catch (Exception $e) {$error = "log error";}
...}

这里的问题是它在PC上工作正常,但在运行chrome 69.x的android 7.0设备上却无法访问sql exec函数。是否有我可能会缺少的东西,例如差的wifi,但是即使那样,处理此路由的其他功能也可以正常工作。

0 个答案:

没有答案