当我将.php文件更改为.blade.php时出错.在我改变它之前得到了这个错误.
Route::get('hello','HelloController@index');
Run Code Online (Sandbox Code Playgroud)
为HelloController
public function index()
{
$data = array(
'name' => 'Rakesh',
'email' => 'sharmarakesh395@gmail.com');
return View::make('hello.index')->with('data', $data);
}
Run Code Online (Sandbox Code Playgroud)
/public/hello/index.blade.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Laravel 5.3 - Home page</title>
</head>
<body>
<h1>Welcome Hello index </h1>
<h1>{!!$data!!}</h1>
<h1>{!!$data['email']!!}</h1>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
错误
The requested resource /hello was not found on this server.
Run Code Online (Sandbox Code Playgroud) 我的旧项目使用Laravel 5.4.17它可以在服务器上正常工作.但是新项目使用Laravel 5.5.4当root/public中的路由"mydomain.com/root/public目前无法处理此请求时,它无法工作. HTTP ERROR 500".这是php版本的问题吗?因为目前的php版本是5.6.23.Laravel 5.5需要php 7.0吗?你觉得我是对的吗?
我的表可以通过 .rowIndex 获取行索引。如果我想要行的第三列数据,是否有可能。
我的表:
<table width="90%" border="1" id="TestAlert">
<tbody>
<tr><td>Attribute</td> <td>Thai</td> <td>English</td></tr>
<tr onclick="myFunction((this))"><td>???????</td><td>...</td><td>WT</td></tr>
<tr onclick="myFunction((this))"><td>????????</td><td>...</td><td>MDL</td></tr>
<tr onclick="myFunction((this))"><td>???</td><td>...</td><td>HIGH</td></tr></tbody>
</table>
Run Code Online (Sandbox Code Playgroud)
和我的脚本:
function myFunction(x) {
if(x.rowIndex != 0){
console.log("Row index is: " + x.rowIndex + "Data 3rd cell: " + **CellData**); //get index
}
Run Code Online (Sandbox Code Playgroud)
当我单击每一行时,我应该使用什么函数来获取 'WT' 或 'MDL' 或 'HIGH'?