我注意到WebStorm中的某些字符有时会以浅色突出显示,就好像该字符有问题一样。但是当悬停在该角色上时,没有任何提示或任何内容,右键单击菜单不显示任何特殊功能,并且右侧的检查栏没有提及。
以下是AngularJS源文件中的示例('clear'之后的':'):
WebStorm试图告诉我什么?
答案 0 :(得分:1)
此浅绿色背景表示语言注入(https://www.jetbrains.com/help/webstorm/2017.1/using-language-injections.html) - WebStorm在class AddImage(APIView):
authentication_classes = (TokenAuthentication,)
permission_classes = (IsAuthenticated,)
def post(self, request):
user_serialized = ContactNumberUserSerializer(instance=self.request.user)
data = user_serialized.data
instance = ContactNumberUser.objects.get(contact=data['contact'])
profile_img_instance = ImageFile(request.FILES.get('profile_pic'))
file_system_instance = FileSystemStorage(location=settings.MEDIA_ROOT)
instance.profile_pic = file_system_instance.save('profile_' + data['first_name'] + ".jpg", profile_img_instance)
instance.save()
return Response(status=status.HTTP_200_OK)
属性值中自动注入CSS。如果您不喜欢其背景颜色,可以在style
(2017年以来的Preferences | Editor | Colors & Fonts | General
),Preferences | Editor | Color Scheme | General
设置,背景中进行更改。