CI如何自定义一个全局函数 来调用model???
看到手册里说helper是不能访问CI资源的,可是在使用的时候我就是想通过一个全局的函数访问CI的资源,有没有办法?...
看到手册里说 helper 是不能访问CI资源的,可是在使用的时候我就是想通过一个全局的函数访问CI的资源,有没有 办法?
展开
展开全部
方法:
命令行窗口:
global B;
B=1;
这时matlab workspace (base workspace)里有了B, 然后 simulink 的matlab function 模块里代码是:
function y = fcn(u)
%#codegen
global B;
y = u+B;
其实就是让输入加上这个全局变量的值,结果仿真时出错信息是:
1.Global declaration not resolved to a Data Store Memory block registered via the Ports and Data Manager.
Function 'MATLAB Function' (#24.45.46), line 4, column 7:
"B"
Launch diagnostic report.
2.Errors occurred during parsing of MATLAB function 'MATLAB Function'(#23)
3. Error due to multiple causes.
Errors occurred during parsing of MATLAB function 'MATLAB Function'(#23)
Error in port widths or dimensions. Output port 1 of 'M_function_try/MATLAB Function/u' is a one dimensional vector with 1 elements.
命令行窗口:
global B;
B=1;
这时matlab workspace (base workspace)里有了B, 然后 simulink 的matlab function 模块里代码是:
function y = fcn(u)
%#codegen
global B;
y = u+B;
其实就是让输入加上这个全局变量的值,结果仿真时出错信息是:
1.Global declaration not resolved to a Data Store Memory block registered via the Ports and Data Manager.
Function 'MATLAB Function' (#24.45.46), line 4, column 7:
"B"
Launch diagnostic report.
2.Errors occurred during parsing of MATLAB function 'MATLAB Function'(#23)
3. Error due to multiple causes.
Errors occurred during parsing of MATLAB function 'MATLAB Function'(#23)
Error in port widths or dimensions. Output port 1 of 'M_function_try/MATLAB Function/u' is a one dimensional vector with 1 elements.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-17
展开全部
helper如果想访问CI资源也不是不可能的。比如: $CI = & get_instance();但并不推荐这么做,为什么呢?helper一般都是通用函数的集合,用来处理某些局部的任务,比如字符串过滤。如果是与你具体需求相关的功能,就最好放在某个controller/model/library里面。基于你的需求,一般的做法是写一个library,然后autoload自动加载,就可以当作“全局”了。废话一些(我通常很喜欢引申,请忍受):对于OOPHP编程来说,全局变量越少,你的程序就越“安全”,越容易控制。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-17
展开全部
function get_view($v,$return=false){$CI=&get_instance();if($return)return $CI->load->view($v,true);$CI->load->view($v);}多看手册
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询