duanrang9348 2018-06-14 05:56
浏览 115
已采纳

Laravel 5在动态字段上嵌套花括号

I want to create dynamic field on my controller and pass variable to blade. I have controller like this

public function create()
{
   $AdditionalField=AdditionalFieldController::generateHTML(1);
   return view("addcontact")->with(['AdditionalField'=$AdditionalField]);
}

output of print_r($AdditionalField) is:

<div class="col-lg-1 col-md-12 col-sm-12 text-right">
    <label class="text-gray-dark"  for="address_2">address_2</label>
</div>
<div class="col-lg-3 col-md-8 col-sm-12">
     <input class="form-control " id="address_2" value="{{isset($editContact['address_2'])?$editContact['address_2']:''}}"  name="address_2">
</div>

and on my blade I use this code for show fields.

 {!!  $AdditionalField !!}

Output is

mypic

but I want to show me this on blade

mypic

Updated

  public static function generateHTML($moduleId)
{       
   $AdditionalFieldKeys = AdditionalFieldKey::where("module_id", $moduleId)->get();
    $html = '';
    foreach ($AdditionalFieldKeys as $additionalFieldKey) {
        $type = AdditionalFieldController::getInputType($additionalFieldKey->additional_field_key_name);
        $fieldName = AdditionalFieldController::getInputName($additionalFieldKey->additional_field_key_name);
        $file = AdditionalFieldController::getTemplate($type);
        $variable = AdditionalFieldController::getVariables($fieldName,$this->model_name);
        $html .= AdditionalFieldController::fillTemplate($variable, $file);
    }
    return $html;
}
    public static function getTemplate($type)
{
    $file = base_path('modules/AdditionalField/view/' . $type . '.stub');
    return file_get_contents($file);
}
  • 写回答

1条回答 默认 最新

  • duanhuihui2705 2018-06-14 06:50
    关注

    As I said in my comment, you need to use something like the StringBladeCompiler.

    To install this component you have to execute two steps (which are also documented in the readme of StringBladeCompiler):

    1. Run composer require "wpb/string-blade-compiler" in your project directory
    2. In config/app.php replace the line Illuminate\View\ViewServiceProvider::class with Wpb\String_Blade_Compiler\ViewServiceProvider::class, like that:

      //Illuminate\View\ViewServiceProvider::class,
      Wpb\String_Blade_Compiler\ViewServiceProvider::class,
      

    After that, you can use string based templates. So in your controller you have to use two view calls. In the end it would look like that:

    public function create()
    {
        $AdditionalField=AdditionalFieldController::generateHTML(1);
        $editContact['address_2']='ali';
    
        return view("addcontact")->with([
            'AdditionalField'=>view(['template' => $AdditionalField])->with(['editContact' => $editContact])
        ]);
    }
    

    If you have to supply any variables to the "inner" view you can add a with just like with the outer view call.

    The other solution would be to just refactor your approach and not generate a string-template but use stuff like "includes".

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀