亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

錯誤 CS0234:命名空間“System.Web”中不存在類型或命名空間名稱“Mvc”

錯誤 CS0234:命名空間“System.Web”中不存在類型或命名空間名稱“Mvc”

C#
Cats萌萌 2021-07-09 10:03:32
我正在使用 VS Code 創建一個 asp.net 項目。這個問題首先被提出是因為我需要使用 AllowAnonymous 操作過濾器。它給出了“ The type or namespace name 'AllowAnonymousAttribute' could not be found.”的錯誤所以我添加了使用 System.Web.Mvc; 在開始部分。它顯示error CS0234: The type or namespace name 'Mvc' does not exist in the namespace 'System.Web'你能給出任何建議嗎?謝謝。using System;using System.Collections.Generic;using System.Linq;using System.Web.Mvc;using System.Threading.Tasks;using Microsoft.AspNetCore.Mvc;using DatingApp.API.Data;using Microsoft.EntityFrameworkCore;namespace DatingApp.API.Controllers{    [AllowAnonymous]    [Route("api/[controller]")]    public class ValuesController : Controller    {        private readonly DataContext _context;        public ValuesController(DataContext context)        {            _context = context;        }        // GET api/values        [HttpGet]        public async Task<IActionResult> GetValues()        {            var values=await _context.Values.ToListAsync();            return Ok(values);        }......運行后dotnet watch run,它給出了如下錯誤。watch : StartedControllers\ValuesController.cs(4,18): error CS0234: The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) [C:\Xumin\projects\DatingApp\DatingApp.API\DatingApp.API.csproj]Controllers\ValuesController.cs(12,6): error CS0246: The type or namespace name 'AllowAnonymousAttribute' could not be found (are you missing a using directive or an assembly reference?) [C:\Xumin\projects\DatingApp\DatingApp.API\DatingApp.API.csproj]Controllers\ValuesController.cs(12,6): error CS0246: The type or namespace name 'AllowAnonymous' could not be found (are you missing a using directive or an assembly reference?) [C:\Xumin\projects\DatingApp\DatingApp.API\DatingApp.API.csproj]
查看完整描述

2 回答

  • 2 回答
  • 0 關注
  • 267 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號