作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
使用 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/
我是一名优秀的程序员,十分优秀!