我有laravel项目。网址为www.el-7l.com。 我已经测试了页面加载速度。 这对于桌面模式是好的,但对于移动mod则非常不好。
请访问上面的网址。这样你就能了解我了。
我想知道如何提高移动设备上的页面加载速度。
谢谢。
答案 0 :(得分:0)
您尝试使用的ajax网址应为完整网址。
a = [1, 2, 3, 4]
a[1:0] = [100, 200, 300]
print(a)
OUTPUT: [1,100, 200, 300, 2, 3, 4]
OR
route / web.php。
url:'http://localhost:8000/resendotp',
ajax行:
Route::get('resendotp', 'EditController@resendotp')->name('resendotp');
答案 1 :(得分:0)
您忘记将code
参数传递给您的请求:
您的ajax函数应类似于:
$.ajax({
url:'/resendotp',
async:false,
data:{id:user_id,phone:phnumber,act1:'sendsms', code:'code here'},
type:'GET',
success:function(data){
alert('OTP sent to '+phnumber);
},error:function(err){
alert('Error Sending OTP');
});