首页 \ 问答 \ 您如何描述生产ASP.NET应用程序?(How do you profile a production ASP.NET applicaiton?)

您如何描述生产ASP.NET应用程序?(How do you profile a production ASP.NET applicaiton?)

我们的某个应用程序存在一些性能问题。 我想过使用像dotTrace这样的东西来找出问题所在,但dotTrace可能会降低性能。

什么是分析prod环境中的应用程序而不会影响性能的最佳方法?


We have some performance problems with one of our applications. I thought about using something like dotTrace to find out where the problems are, but dotTrace would probably degrade performance even more.

What's the best way to profile an application that's on a prod environment w/o affecting performance too much?


原文:https://stackoverflow.com/questions/1076804
更新时间:2023-02-28 16:02

最满意答案

有关VueJS文档的迁移指南: https ://vuejs.org/v2/guide/migration.html

您可以找到有关分隔符的信息(选项已被替换): https//vuejs.org/v2/guide/migration.html#Vue-config-delimiters-replaced

您需要在vue组件中声明分隔符:

new Vue({
    delimiters: ['${', '}']
})

There is a migration guide on the VueJS documentation : https://vuejs.org/v2/guide/migration.html

You can find information about delimiters (the options has been replaced) : https://vuejs.org/v2/guide/migration.html#Vue-config-delimiters-replaced

You need to declare delimiters in your vue component :

new Vue({
    delimiters: ['${', '}']
})

相关问答

更多
  • 您可以尝试使用v-for并设置数据以使用数组。 尝试这样的事情:
    {{myItem.name}}
    var app = new Vue({ el: '#app', data: { items : [{ seen: true, name: 'item 1' ...
  • 声明一个index变量:
    演示: new Vue({ el: '#app', data: { items: [{name: 'a'}, {name: 'b'}] } })
    您可以在v-for属性中使用变量: v-for item in items | filterBy id in 'id' var vm = new Vue({ ... data:function() { return { id:1 } } } 然后你可以在像文本或选择的输入上使用v-model ,并在那里设置id: 这里有几个例子: http ...
  • 你可以用transition在你的组件中包装一个元素 来自文档的样本