English 中文(简体)
ASP.NET Razor 中的获取特定变量
原标题:Acessing specific variable in ASP.NET Razor

嘿,我希望这个问题不要太蠢

您如何获取页面的一个值。 例如, 我的 cshtml 文件中有 3 个变量 。

@{var number1 = a1;}
@{var number2 = b2;}
@{var number3 = c3;}

但如果我用我的应用程序去下载所有信息, 我无法再分解它了。 使用这个 URL

"http://www.myurl.com/numbers.cshtml"

结果是"a1b2c3"

Is it possible to acess only the value of e.g. number2? So that the outcome would be "b2"? I searched for hours and I think it has to do with the url so that I type in my application

"http://www.myurl.com/numbers.cshtml?number2"

这显然行不通。我希望你明白我的意思。我非常希望得到一些有用的答案:)

你好,你好

亚历克斯

//评价

感谢您的回答 。 我很抱歉, 如果我不够清楚的话 。 基本上我想通过 Unity3D (Game Engine) 从服务器端文件中获取数据 。 只要您在游戏中登录下载关于您的配置文件的所有信息( 名称、 级别、 经验等) 。 问题在于, Unity 下载整个 URL 的内容。 我可以输入任何值或变量 。 它的输出是纯文本 。 现在我可以为每个文本字段写自己的脚本, 但我宁愿在一个文件中有某些组 。 最重要的是, 我从我的 DB 下载数值, 然后再下载 Unity3D 。 因为它下载了我现在需要下载的所有东西。 例如, 我只要下载玩家的名字, 但要在同一个文件里, 我要告诉 Unity, 我只需要一个特定的变量。 我认为使用修改的 URL 就可以做到这一点。 如果我是错的, 这完全是荒谬的, 我非常抱歉 。

//评价2:

适用中的《守则》:

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
public string url = "http://localhost:19206/ListProducts.cshtml";

 IEnumerator Start()
    {
        WWW www = new WWW(url);
        yield return www;
        guiText.text = www.text;
    }

Unfortunatly something like www.number1.text didn t work. Thank you so much again!

//评价3

最后我对Asp.net 剃刀文件的简单和基本代码。 还没有 DB 执行, 但我想这与它无关。

@{ var experience = 3532; }
@{ var playerName = "Player1"; }

Your current experience is: @experience
Your Playername is: @playerName
问题回答

只需考虑将JsonResult从动作中返回,

 return JsonResult({number1=42, text1="bla", number2=7});

在 JavaScript 一边你会得到 {编号1: 42, text1: "bla, number2: 7} 这个非常友好的 JavaScript 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签