thinkcmf 怎么用model关联表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkcmf 怎么用model关联表相关的知识,希望对你有一定的参考价值。

参考技术A 添加一个sScrollY属性
var height=$(window).height();

$(document).ready(function()
$('#example').dataTable(

"sScrollY": height
);

在thinkphp中怎么进行三个表关联

<?php
namespace Dome\\Model;
use Think\\Model\\ViewModel;
Class AbcViewModel extends ViewModel
protected $viewField=array(
\'A\'=>array(\'id\',\'xx\',\'xx\'),
\'B\'=>array(\'bx\',\'bxx\',\'_on\'=>\'B.pid=A.pid\'),
\'C\'=>array(\'cx\',\'cxx\',\'_on\'=>\'C.pid=A.pid\'),
);
参考技术A 用模型还是JOIN或者VIEW

以上是关于thinkcmf 怎么用model关联表的主要内容,如果未能解决你的问题,请参考以下文章

thinkcmf多个字段添加代码怎么写?

thinkcmf 里js怎样调用控制器的值

tp5 thinkphp5 多表关联查询 join查询

thinkcmf怎么添加系统常量

think PHP提取字符串中的数字,并到数据库中使用in查询所关联表的字段值

在thinkphp中怎么进行三个表关联