gpt4 book ai didi

laravel - 如何将 HTML5 自定义 data-* 属性添加到 Laravel 4 Blade 模板?

转载 作者:行者123 更新时间:2023-12-02 04:52:35 25 4
gpt4 key购买 nike

这一行:

{{ Form::open(['action' => 'AnyController@hello', 'class'=> 'hello']) }}

将导致:

<form method="POST" action="http://localhost:8000/hello" accept-charset="UTF-8" class="hello">

但是,我想添加 HTML5 自定义 data-* 属性,例如:

<form method="POST" action="http://localhost:8000/hello" accept-charset="UTF-8" class="hello" data-abide>

我该怎么做?

提前致谢!

最佳答案

不确定它是否是 laravel 中的一个变化,但是

{{ Form::open(array(
'action' => 'AController@index',
'class' => 'hello',
'data-abide' => true
))
}}

结果

<form method="POST" action="http://localhost:8000/hello" accept-charset="UTF-8" class="hello" data-abide="1">

要获得您要求使用的结果:

{{ Form::open(array(
'action' => 'AController@index',
'class' => 'hello',
'data-abide' => ''
))
}}

结果

<form method="POST" action="http://localhost:8000/hello" accept-charset="UTF-8" class="hello" data-abide>

关于laravel - 如何将 HTML5 自定义 data-* 属性添加到 Laravel 4 Blade 模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18556447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com