如何提高laravel项目在手机上的页面浏览速度

时间:2019-03-18 14:30:35

标签: laravel

我有laravel项目。网址为www.el-7l.com。 我已经测试了页面加载速度。 这对于桌面模式是好的,但对于移动mod则非常不好。

https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fel-7l.com%2F&amp%3Btab=mobile&tab=mobile

请访问上面的网址。这样你就能了解我了。

我想知道如何提高移动设备上的页面加载速度。

谢谢。

2 个答案:

答案 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');
});