Laravel在master分支中工作,但没有在localhost

时间:2016-07-28 05:17:31

标签: laravel laravel-5 version-control

我在我的计算机上的主分支机构本地工作。我已经更新了一些HTML,我正在localhost中加载页面。但是,HTML没有更新,但我的CSS是,我该怎么办?我之前没有遇到过这个问题!

2 个答案:

答案 0 :(得分:0)

尝试

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
<tr><td>Account</td><td>Debet</td><td>Credit</td></tr>
<tr>
    <td>
        <select id="acc" name="acc" required="required"> 
            <option value="">Select</option>
            <option value="db">Cash-In</option>
            <option value="cr">Cash-Out</option>
        </select>
    </td>
    <td><input type="text" id="debit" name="debit" /></td>
    <td><input type="text" id="credit" name="credit" /></td>
</tr>
</table>
终端上的

。可能是缓存中提供的页面,这就是为什么不反映更改。

答案 1 :(得分:0)

尝试执行此命令以删除缓存:

php artisan clear-compiled
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
composer dump-autoload
php artisan optimize