In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article focuses on "how to use iView+.Net Core to upload pictures in VUE". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to upload pictures using iView+.Net Core in VUE.
First of all, you need to create a WebApi project. After you have created it, you can create a folder name under the wwwroot file at will. Here, it is called Upload.
Ok! Then we create a controller IndexController with the following code
You should know that all uploaded pictures are requested through HTTP, and the server reads them from request.
Public class PicData {public string Msg {get; set;}} [HttpPost] public async Task InsertPicture ([FromServices] IHostingEnvironment environment) {var data = new PicData (); string path = string.Empty; var files = Request.Form.Files If (files = = null | | files.Count () allowType.Contains (c.ContentType)) {if (files.Sum (c = > c.Length) {options.AddPolicy ("hehe", p = > p.AllowAnyMethod () / / allow any method GET,POST,PUT,DELETE OPTIONS .AllowAnyHeader () / / allow any request header. AllowAnyOrigin () / / allow any address) });}
The ConfigureServices method, and then the Configure method
Public void Configure (IApplicationBuilder app, IHostingEnvironment env) {app.UseStaticFiles (); app.UseCors ("hehe"); if (env.IsDevelopment ()) {app.UseDeveloperExceptionPage ();} app.UseMvc ();}
Ok is done.
And then we're going to create the Vue project.
Use npm to create a vue project, vue init webpack file let's skip the creation process
Use npm to reference iview and then in main.js in the vue project
Import iView from 'iview';import' iview/dist/styles/iview.css';import locale from 'iview/dist/locale/en-US';Vue.use (iView, {locale})
Ok, and then we write code in app.vue.
Upload files so far, I believe you have a deeper understanding of "how to use iView+.Net Core to upload pictures in VUE". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.