ErrorException使用未定义的常量datepickerTitle-假定为“ datepickerTitle”(这将在以后的PHP版本中引发错误)

时间:2019-03-06 06:23:06

标签: php laravel

在我遇到多个错误后,我已将文件上传到laravel服务器/环境中,我将尝试解决10到15次,但无法正常工作

enter image description here

    <div class="datepicker"
         ng-class="{
            'am': timeframe == 'am',
            'pm': timeframe == 'pm',
            'compact': compact
        }">
        <div class="datepicker-header">
            <div class="datepicker-title" ng-if="datepicker_title">{{ datepickerTitle }}</div>
            <div class="datepicker-subheader">{{ customMessage }} {{ selectedDay }} {{ monthNames[localdate.getMonth()] }} {{ localdate.getDate() }}, {{ localdate.getFullYear() }}</div>
        </div>
        <div class="datepicker-calendar">
            <div class="calendar-header">
                <div class="goback" ng-click="moveBack()" ng-if="pickdate">
                    <svg width="30" height="30">
                        <path fill="none" stroke="#23527c" stfroke-width="3" d="M19,6 l-9,9 l9,9"/>
                    </svg>
                </div>
                <div class="current-month-container">{{ currentViewDate.getFullYear() }} {{ currentMonthName() }}</div>
                <div class="goforward" ng-click="moveForward()" ng-if="pickdate">
                    <svg width="30" height="30">
                        <path fill="none" stroke="#23527c" stroke-width="3" d="M11,6 l9,9 l-9,9" />
                    </svg>
                </div>
            </div>

1 个答案:

答案 0 :(得分:1)

您正在混合角钢和铲刀,这完全没问题...但是您需要使这些东西保持笔直。

{{ $bladeVar }}@{{ ngVar }}

...如果您在尖角内,则需要@符号;如果在Blade / php中,则需要$符号。

在这种特殊的解析错误情况下,blade / php要求输入美元符号。