小编pat*_*cha的帖子

Laravel ::在此服务器上找不到请求的资源/ hello

当我将.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)

php laravel laravel-5

3
推荐指数
2
解决办法
6450
查看次数

laravel 5.5 HTTP ERROR 500无法处理此请求

我的旧项目使用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吗?你觉得我是对的吗?

php laravel-5 laravel-5.5

1
推荐指数
3
解决办法
3万
查看次数

Javascript可以同时获取行索引和单元格数据吗?

我的表可以通过 .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'?

html javascript

1
推荐指数
1
解决办法
3233
查看次数

标签 统计

laravel-5 ×2

php ×2

html ×1

javascript ×1

laravel ×1

laravel-5.5 ×1