Skip to content

hongyukeji/laravel-simditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel-simditor

laravel simditor editor.

Installing

$ composer require hongyukeji/laravel-simditor
$ php artisan vendor:publish --provider="Hongyukeji\LaravelSimditor\SimditorServiceProvider"

Usage

  • in your block just put
@include('Simditor::assets')
<!-- 加载编辑器的容器 -->
<textarea id="editor" name="content" rows="6" placeholder="">
    这里写你的初始化内容
</textarea>

<!-- 实例化编辑器 -->
<script>
    $(document).ready(function() {
        var editor = new Simditor({
            textarea: $('#editor'),
            upload: {
                url: '上传图片地址',
                params: {
                    _token: 'Csrf Token'
                },
                fileKey: 'upload_file',
                connectionCount: 3,
                leaveConfirm: '文件上传中,关闭此页面将取消上传。'
            },
            pasteImage: true,
        });
    });
</script>

<!-- or -->

<!-- 加载编辑器的容器 -->
<script id="editor" name="content" type="text/plain">
    这里写你的初始化内容
</script>

<!-- 实例化编辑器 -->
<script>
    $(document).ready(function() {
      var editor = new Simditor({
        textarea: $('#editor'),
      });
    });
</script>
echo json_encode([
    'success' => true,
    'msg' => '图片上传错误信息',
    'file_path' => '/upload/2018_10_11/1.jpg'
]);

Contributing

You can contribute in one of three ways:

  1. File bug reports using the issue tracker.
  2. Answer questions or fix bugs on the issue tracker.
  3. Contribute new features or update the wiki.

The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.

License

MIT

About

laravel simditor editor

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages