helloxielan 2017-02-10 14:26 采纳率: 0%
浏览 65

Laravel不返回页面

I am saving data into database by passing variable throught ajax and using it in the controller.

Saving works fine, it saves data into a database but the problem is displaying saved page. Database has 2 fields, name and html. Name is obviously name of the website and html is pure html code. so when user saves page with name 'random' I want to display html page to him using localhost/random

Error message I get is:

Trying to get property of non-object (View: C:\xampp\htdocs\fyprojectesources\views\layouts\website.blade.php)

Here's what I have done so far:

Ajax:

var web_name;
function updateDatabase(newCode, name_website)
{
    code2 = document.getElementById("content-link2").innerHTML;
    web_name = ($('#website_name').val());
    // make an ajax request to a PHP file
    // on our site that will update the database
    // pass in our lat/lng as parameters
    $.post('http://localhost/template', {
            _token: $('meta[name=csrf-token]').attr('content'),
            newCode: (code2),
            name_website: (web_name),
        })
        .done(function() {
        })
        .fail(function() {
            alert("error");
        });
}

Controller:

     public function postDB(Request $request) {
        $newName = $request->input('name_website');
        $newLat = $request->input('newCode');
        $websites = new Website();
        $websites->name = $newName;
        $websites->html = $newLat;
        $websites->save();
        $name = $newName;
        return redirect($name);
    }
    public function website($name) {
    $website = Website::where('name', $name)->first()->html;

    // Render resources/views/template.blade.php or any view you want
    // and pass the data. E.g. $website, so you can access $website->html in your view.
    return view('layouts/website', compact('name'));
}
}

Routes:

Route::get('home', 'BuilderController@homepage');
Route::get('template', 'BuilderController@templates');
Route::post('template', 'BuilderController@postDB');
Route::get('logout', 'BuilderController@getLogout');
Route::get('/{name}', 'BuilderController@website');

website.blade.php:

@extends('layouts.master') @section('title', 'Website Builder') @section('content')
<meta name="csrf-token" content="{{ csrf_token() }}" />


{{html_entity_decode($name->html)}}
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
    axios.get('/localhost/name').then(
        html => document.querySelector('html').innerHTML = html     
    );
</script>
</html>
@endsection @show

What is going on?

  • 写回答

2条回答 默认 最新

  • weixin_33709590 2017-02-10 14:39
    关注

    The problem is you are passing variable called name to your view while you need to pass $website. furthermore you have a mistake in your Eloquent query.

    Try to change the following,

    $name->html // Change this
    $website->html // to this
    return view('layouts/website', compact('name')); // Change this
    return view('layouts/website', compact('website')); // To this
    $website = Website::where('name', $name)->first()->html; // Change this
    $website = Website::where('name', $name)->first(); // To this
    
    评论

报告相同问题?

悬赏问题

  • ¥30 基于信创PC发布的QT应用如何跨用户启动后输入中文
  • ¥20 非root手机,如何精准控制手机流量消耗的大小,如20M
  • ¥15 远程安装一下vasp
  • ¥15 自己做的代码上传图片时,报错
  • ¥15 Lingo线性规划模型怎么搭建
  • ¥15 关于#python#的问题,请各位专家解答!区间型正向化
  • ¥15 unity从3D升级到urp管线,打包ab包后,材质全部变紫色
  • ¥50 comsol温度场仿真无法模拟微米级激光光斑
  • ¥15 上传图片时提交的存储类型
  • ¥15 VB.NET如何绘制倾斜的椭圆