嘿,我希望这个问题不要太蠢
您如何获取页面的一个值。 例如, 我的 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