【问题标题】:Undefined constant "page_link" (View: \resources\views\home\index.blade.php) In the: "\resources\views/home/index.blade.php" file at line: 19 [closed]未定义的常量“page_link”(视图:\resources\views\home\index.blade.php)在:“\resources\views/home/index.blade.php”文件的第 19 行 [关闭]
【发布时间】:2021-09-04 03:51:45
【问题描述】:

您好,我需要有关此代码的帮助 未定义常量“page_link”(视图:\resources\views\home\index.blade.php) 在“\resources\views/home/index.blade.php”文件中的第 19 行

<script>
var url = 'https://wati-integration-service.clare.ai/ShopifyWidget/shopifyWidget.js?84151';
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = url;
var options = {"enabled":true,"chatButtonSetting":{
  "backgroundColor":"#4dc247",
  "ctaText":"",
  "borderRadius":"25",
  "marginLeft":"0",
  "marginBottom":"50",
  "marginRight":"50",
  "position":"left"},"brandSetting":{
  "brandName":"123Albania",
  "brandSubTitle":"Zakonisht përgjigjet brenda një dite",
  "brandImg":"https://cdn.clare.ai/wati/images/WATI_logo_square_2.png",
  "welcomeText":"Pershendetje!\nSi mund te ju ndihmoj?",
  "messageText":"Pershendetje, kam nje pytje rreth {{page_link}}",
  "backgroundColor":"#0a5f54",
  "ctaText":"Fillo biseden",
  "borderRadius":"25",
  "autoShow":false,
  "phoneNumber":""}};s.onload = function() {
    CreateWhatsappChatWidget(options);
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);

【问题讨论】:

标签: php html laravel


【解决方案1】:

因为你调用了一个常量page_link。将其替换为$page_link

<script>
var url = 'https://wati-integration-service.clare.ai/ShopifyWidget/shopifyWidget.js?84151';
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = url;
var options = {"enabled":true,"chatButtonSetting":{
  "backgroundColor":"#4dc247",
  "ctaText":"",
  "borderRadius":"25",
  "marginLeft":"0",
  "marginBottom":"50",
  "marginRight":"50",
  "position":"left"},"brandSetting":{
  "brandName":"123Albania",
  "brandSubTitle":"Zakonisht përgjigjet brenda një dite",
  "brandImg":"https://cdn.clare.ai/wati/images/WATI_logo_square_2.png",
  "welcomeText":"Pershendetje!\nSi mund te ju ndihmoj?",
  "messageText":"Pershendetje, kam nje pytje rreth {{ $page_link }}",
  "backgroundColor":"#0a5f54",
  "ctaText":"Fillo biseden",
  "borderRadius":"25",
  "autoShow":false,
  "phoneNumber":""}};s.onload = function() {
    CreateWhatsappChatWidget(options);
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);

【讨论】:

  • 非常感谢您的工作。
猜你喜欢
  • 2019-08-06
  • 1970-01-01
  • 1970-01-01
  • 2019-08-29
  • 1970-01-01
  • 2021-10-12
  • 2021-09-08
  • 1970-01-01
  • 2021-11-12
相关资源
最近更新 更多