tinymce中的automatic_uploads是否为iformfile返回null?

时间:2019-08-04 08:04:10

标签: entity-framework asp.net-core tinymce image-uploading

我想在tinymce中使用上传图片。 我的控制器代码和布局脚本在那里:

public async Task<IActionResult> uploadFile(IFormFile iformfile)
        {

            //I upload my file and return location to editor 

          }




<script>
    tinymce.init({
        selector: '#mytextarea',

        automatic_uploads: true,
        images_upload_url: 'uploadFile',
        images_reuse_filename: true,
 });
</script>

但是我在控制器的action参数中收到null。 当我调试应用程序并在控制器动作中断点时,动作被调用但收到空值。 我使用.net core 2.1。 其他所有插件都做得很好!

1 个答案:

答案 0 :(得分:0)

Rails.application.config.assets.precompile += %w( applicationname.css )