我创建了一篇文章和评论模型,并且在这两个模型上都有CRUD。它工作得很完美。我现在需要的是在注释中显示article.title字段,而不是comment.articleid。我该怎么做呢?
这就是我被卡住的地方。我不知道下一步该做什么,也不知道这是否正确:
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
假设我有一个简单的页面,它通过控制器加载文章到刀片模板-> articles.blade.php。在这个模板中,我想要添加额外的部分,从类别控制器加载所有类别。我试着用<?php echo View::make('category'); ?>命令添加这个页面。但我猜它是直接加载视图文件,而不是接触控制器,所以控制器的变量不会传递给视图。我得到的错误是:
Method Illuminate\View\View::__toString() must not throw an exception
我想知道我说的对不对?如果不是,我应该如何将视图添加到模板中,以便加载
你好!
首先,非常感谢你的帮助!
设想情况:
1°I使用码点火器
2°我在视图文件中添加了这个非常简单的脚本。
()
3°这是我在浏览器中收到的错误消息:
Uncaught ReferenceError: $ is not defined at VM113 info:21
(anonymous) @ VM113 info:21
这个我的控制器方法:
public function info()
{
$data['pagetitle'] = 'general use';
$this->load->view('theme/hea
我成功地将文件与Blueimp/插件一起上传到服务器上的文件夹中。但是,我在表单action="/upload/success“和显示实际的"success.php”视图文件时遇到了问题,在成功上传一些文件之后,人们会看到这个视图文件。
以下是“上传”控制器的相关部分:
function index() {
$this->load->view('upload/index'); // this is the index.php in the parent directory of the plugin
}
function success() {
r
我试图使用自定义包的视图,而不将它们添加到view.php conf文件中。我已经创建了以下服务提供程序并将其添加到app.php文件中。
class FooServiceProvider extends ServiceProvider
{
public function boot()
{
$this->loadViewsFrom(__DIR__.'/../views', 'foo');
}
public function register()
{
}
}
我尝试使用view('foo.t
我将query->result()从模型返回给控制器,在控制器中将$data传递给视图文件,但在视图文件中没有获得任何数据。
下面是show_model.php文件:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Show_model extends CI_Model {
public function __construct()
{
parent::__construct();
$t
是否有一种方法可以使用ChildController $this从视图文件访问Controller和的所有公共属性
<?PHP
class Controller {
public $userFamilyName = "Doe";
}
class ChildController extends Controller{
public $user = "John"
public function routeFunction(){
return view("viewFile")