在TinyMce Laravel中显示纯HTML代码 [英] Display pure html code in tinymce laravel

查看:61
本文介绍了在TinyMce Laravel中显示纯HTML代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在laravel5中使用tinmymce.我在需要显示代码段的地方创建了博客文章. 例如,我想显示这段代码片段<meta http-equiv="X-UA-Compatible" content="IE=edge">,这是我的源代码,如tinymce所示:

Hi I am using tinmymce in laravel5. I create blogposts where i need to display code snippets. for example i want to display this bit of code snippet <meta http-equiv="X-UA-Compatible" content="IE=edge"> and here is my source code as seen in tinymce:

<pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;</code></pre>

这是将其保存在我的数据库中的方式:

And this is how it is saved in my database:

<pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;</code></pre>

问题是,当我使用相同的tinymce编辑器将数据拉到视图中进行编辑时 我什么都没看到,它一片空白.如果我检查源代码,就剩下<pre></pre>

The problem is when i pull that data to edit in my view using the same tinymce editor I see nothing, its blank. if i check the source code all is left there is <pre></pre>

这是我的创建页面:

@extends('layouts.app')
@section('content')

<section class="articles-show">
    <div class="container">
        <div class="row">
            <div class="col-sm-10 articles-page">

                <h1>Create Article</h1>
                {{-- @if (Auth::user()->isAuthor() || Auth::user()->isAdmin()) --}}
                {!! Form::open(['method' => 'POST', 'action' => 'ArticlesController@store', 'files' => true]) !!}
                @include('partials.error-message')
                <div class="form-group">
                    {!! Form::label("title", "Title:") !!}
                    {!! Form::text("title", null, ['class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("body", "Body:") !!}
                    {!! Form::textarea("body", null, ['class' => 'form-control']) !!}  
                </div>

                <div class="form-group">
                    {!! Form::label('photo_id', 'Featured Image:') !!}
                    {!! Form::file('photo_id', array('class' => 'form-control')) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("category_id", "Category:") !!}
                    {!! Form::select("category_id[]", $categories, null, ['id' => 'tag_list', 'class' => 'form-control', 'multiple']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("meta_desc", "Meta Description:") !!}
                    {!! Form::text("meta_desc", null, ['class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::submit("Create Article", ['class' => 'btn btn-primary']) !!}
                </div>

                {!! Form::close() !!}
                {{-- @endif --}}
            </div>
            <div class="col-sm-2 articles-page">
                {!! Form::open(['method' => 'POST', 'action' => 'CategoryController@store']) !!}
                
                <br>
                <div class="form-group">
                    {!! Form::label("name", "Category Name:") !!}
                    {!! Form::text("name", null, ['class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::submit("Create Category", ['class' => 'btn btn-primary']) !!}
                </div>

                {!! Form::close() !!}
            </div>
        </div>
    </div>
</section>

@include('partials.select-2-script')
@include('partials.tinymceScript')

@endsection

这是我的编辑页面:

@extends('layouts.app')
@section('content')

@section('content') 

<section class="articles-show">
      <div class="container">
        <div class="row">
          <div class="col-sm-10 articles-page">

            <h1>Create Article</h1>

            {!! Form::model($article, ['method' => 'PATCH', 'action' => ['ArticlesController@update', $article->id], 'files' => true]) !!}
                @include('partials.error-message')
                <div class="form-group">
                    {!! Form::label("title", "Title:") !!}
                    {!! Form::text("title", null, ['class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("body", "Body:") !!}
                    {!! Form::textarea("body", null, ['id' => 'mytextarea', 'class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label('photo_id', 'Featured Image:') !!}
                    {!! Form::file('photo_id', array('class' => 'form-control')) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("category_id", "Category:") !!}
                    {!! Form::select("category_id[]", $categories, null, ['id' => 'tag_list', 'class' => 'form-control', 'multiple']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label("meta_desc", "Meta Description:") !!}
                    {!! Form::text("meta_desc", null, ['class' => 'form-control']) !!}
                </div>

                <div class="form-group">
                    {!! Form::submit("Edit Article", ['class' => 'btn btn-primary']) !!}
                </div>

            {!! Form::close() !!}

            {!! Form::open(['method' => 'DELETE', 'action' => ['ArticlesController@destroy', $article->id]]) !!}
                <div class="form-group">
                    {!! Form::submit("Delete Article", ['class' => 'btn btn-danger']) !!}
                </div>
            {!! Form::close() !!}
            </div>
            <div class="col-sm-2 articles-page">

                {!! Form::open(['method' => 'POST', 'action' => 'CategoryController@store', 'files' => true]) !!}
                    <br>
                    <div class="form-group">
                        {!! Form::label("name", "Category Name:") !!}
                        {!! Form::text("name", null, ['class' => 'form-control']) !!}
                    </div>

                    <div class="form-group">
                        {!! Form::submit("Create Category", ['class' => 'btn btn-primary']) !!}
                    </div>

                {!! Form::close() !!}
            </div>
        </div>
    </div>
</section>

    @include('partials.select-2-script')
    @include('partials.tinymceScript')

@endsection

这是我的tinymce脚本页面,其中包含我创建和编辑页面中包含的部分内容:

and here is my tinymce script page that is in partials which i have included in create and edit pages:

<script src="http://code.jquery.com/jquery.js"></script>
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<script>
      var editor_config = {
        path_absolute : "{{ URL::to('/') }}/",
        selector: "textarea",
        //entities : "60,lt,62,gt,38,amp",
        // entity_encoding: "raw",
        plugins: [
          "advlist autolink lists link image charmap print preview hr anchor pagebreak",
          "searchreplace wordcount visualblocks visualchars code fullscreen",
          "insertdatetime media nonbreaking save table contextmenu directionality",
          "emoticons template paste textcolor colorpicker textpattern spellchecker"
        ],
        toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image media | spellchecker",
        menubar: "tools",
        relative_urls: false,
        file_browser_callback : function(field_name, url, type, win) {
          var x = window.innerWidth || document.documentElement.clientWidth || document.getElementsByTagName('body')[0].clientWidth;
          var y = window.innerHeight|| document.documentElement.clientHeight|| document.getElementsByTagName('body')[0].clientHeight;

          var cmsURL = editor_config.path_absolute + 'laravel-filemanager?field_name=' + field_name;
          if (type == 'image') {
            cmsURL = cmsURL + "&type=Images";
          } else {
            cmsURL = cmsURL + "&type=Files";
          }

          tinyMCE.activeEditor.windowManager.open({
            file : cmsURL,
            title : 'Filemanager',
            width : x * 0.8,
            height : y * 0.8,
            resizable : "yes",
            close_previous : "no"
          });
        }
      };

      tinymce.init(editor_config);
    <!--   -->
</script>

我到处搜索,尝试了在tinymce论坛等上发布的所有内容.Stackoverflow是我最后的希望:)

I have searched everywhere, tried everything posted in tinymce forums etc. Stackoverflow is my last hope :)

推荐答案

使用情况:

{!! $varable !!}

这将回显HTML引擎和Tinymce的值

this will echo the value for Html engine and Tinymce

请勿使用:

{{$variable}}

这篇关于在TinyMce Laravel中显示纯HTML代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆