keith-wood 签名不适用于生产

keith-wood Signature not working on production

jQuery UI 签名在本地有效但在实时服务器上无效 javascript:


    var sig = $('#sig').signature({syncField: '#signature64', syncFormat: 'PNG',svgStyles: true});
       $('#clear').click(function(e) {

           e.preventDefault();

           sig.signature('clear');

           $("#signature64").val('');
       });

HTML代码:

     <label class="" for="">Signature:</label>
                                        <br/>
                                        <div id="sig" ></div>
                                        <br/>
                                        <button id="clear" class="btn btn-danger btn-sm">Clear Signature</button>
                                        <textarea  id="signature64" name="signed" style="display: none">

                                        </textarea>

路线:

 Route::POST('bene/store/', [App\Http\Controllers\BeneficiaryController::class, 'store'])->name('beneficiary.store');

一切似乎都很好,但每当我提交我的表格时都会出现错误

提前致谢!!

在 php.ini 文件中增加 post 最大大小,然后此问题将得到解决。