gpt4 book ai didi

php - 如何在 Blade View 中动态插入代码

转载 作者:搜寻专家 更新时间:2023-10-31 21:04:12 24 4
gpt4 key购买 nike

使用 laravel 5.1,我可以动态地将自定义代码插入 Blade View 吗?例如,我有这个 view.blade.php :

<html>
<head>
<title>App Name - @yield('title')</title>
</head>
<body>
@section('sidebar')
This is the master sidebar.
@show

<div class="container">
@yield('content')
// Here, I want to insert a code dynamically, for example :
<div> <p> something </p> </div>
</div>
</body>

那么,有没有什么好的方法可以在 Controller 中做这样的事情:

$customCode = "<div> <p> something </p> </div>";
$content = (string) $view;
//For example I want to insert this code into view file on line 11
updateContent($content, $customCode, $line_position_in_view);

最佳答案

这是你的 jQuery 代码:

您的 HTML 文件或 View 文件

<div class="container">
@yield('content')
// Here, I want insert a code dynamically, for example :
<div> <p> something </p> </div>
</div>

$.post("test.php",{},function (data){
$(".container").append(data);
});

注意:如果你想使用 Controller 函数,那么将 test.php 更改为具有正确路径的函数名称。

test.php 文件或 Controller 函数

<?php
echo "<div> <p> something </p> </div>";
exit;
?>

关于php - 如何在 Blade View 中动态插入代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35334934/

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