我正在使用Bootstrap site官方提供的CDN链接在Web应用程序中使用面板进行测试
$result = $wpdb->get_var("SELECT host FROM bitnami_wordpress.sss1_latest WHERE CLIENT ='$current_user->user_login'") . ',';
彻底检查我的代码后,面板没有显示。
但是我在SO上看到了类似的帖子,而CDN链接却不同,这使得面板可以正确显示。
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
我认为所有可用的boostrap链接都将包含相同的引导源,为什么官方提供的CDN链接不起作用(例如对于面板)
答案 0 :(得分:0)
这是因为在第一个链接中有Bootstrap v4.3.1
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
您具有引导程序版本3.3.7的第二个链接
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>