在 laravel 中包含 php 文件的位置以及如何使用 javascript 调用 php 文件中的特定函数
Posted
技术标签:
【中文标题】在 laravel 中包含 php 文件的位置以及如何使用 javascript 调用 php 文件中的特定函数【英文标题】:Where to include the php file in laravel and how to call a specific function in the php file using javascript 【发布时间】:2015-01-19 16:29:08 【问题描述】:我是 Laravel 的新手,正在努力寻找解决方法。
我创建了一个 php 文件,它有几个函数,一个生成随机数,一个显示日期等等......
我有一个查看页面,单击单选按钮会生成一个随机数,所以我的问题是我的 php 文件在应用程序中的位置以及如何从查看页面调用特定函数,以便只有那部分文件执行。
我的代码放在这里...
view.blade.php
<script type="text/javascript">
function CreateRandomNumber()
$('#wdv').onclick("<?php CreateRandomNumber(); ?>");
</script>
<div class="row form-wrapper">
<form class="form-horizontal" id="form" method="post" action="" autocomplete="off">
<!-- CSRF Token -->
<input type="hidden" name="_token" value=" csrf_token() " />
<div class="form-group $errors->has('depreciation_type') ? ' has-error' : '' ">
<label for="depreciation_type" class="col-md-3 control-label depreciationlabel">@lang('admin/assetdetails/form.depreciation')</label>
<div class="controls col-md-7">
Form::radio('depreciation_type', 'wdv', Input::old('depreciation_type', $assetdetail->depreciation_type == 'wdv' ), array('id'=>'wdv', 'class'=>'wdvbutton','onclick' => 'random()'))
<label for="wdv" class="col-md-2 control-label wdvlabel">@lang('admin/assetdetails/form.wdv')</label>
Form::radio('depreciation_type', 'slm', Session::hasOldInput() ? array_key_exists('depreciation_type', Input::old()) : ($assetdetail->exists ? $assetdetail->depreciation_type == 'slm' : true), array('id'=>'slm', 'class'=>'slmbutton'))
<label for="slm" class="col-md-2 control-label slmlabel">@lang('admin/assetdetails/form.slm')</label></br>
$errors->first('depreciation_type', '<span class="alert-msg"><i class="icon-remove-sign"></i> :message</span>')
</div>
</div>
</form>
</div>
到目前为止,我的 php 页面已将 php 页面包含在 app 文件夹中,并将其包含在 start.php 文件中,我不确定这是否是在我的应用程序中插入文件的正确位置。
随机数.php
<?php
function CreateRandomNumber()
//stuff to create random number here
function ShowDate()
//stuff to find and show date here
?>
我知道在 java 脚本中调用 php 函数是一种不好的做法,有没有其他方法可以在单击按钮时在视图页面中调用特定的 php 函数。如果是 ajax,如何在 ajax 中包含 php 函数名。
此外,在 app 文件夹中添加文件并将其包含在 start.php 中是否正确。
提前谢谢....
【问题讨论】:
【参考方案1】:您基本上想创建一个辅助函数。这篇文章应该引导你朝着正确的方向前进。我建议走图书馆路线,这会更干净,而且你的优势是它只在使用时才被加载。 Laravel 4 helpers or basic functions
【讨论】:
以上是关于在 laravel 中包含 php 文件的位置以及如何使用 javascript 调用 php 文件中的特定函数的主要内容,如果未能解决你的问题,请参考以下文章