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 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分